Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Sign in / Register
Toggle navigation
P
pre-release-database-cdb
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Locked Files
Issues
0
Issues
0
List
Boards
Labels
Service Desk
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Security & Compliance
Security & Compliance
Dependency List
License Compliance
Packages
Packages
List
Container Registry
Analytics
Analytics
CI / CD
Code Review
Insights
Issues
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
MyCard
pre-release-database-cdb
Commits
e7333fc9
Commit
e7333fc9
authored
Nov 01, 2025
by
wind2009
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix
parent
5fdfdaa1
Pipeline
#41388
passed with stages
in 1 minute and 45 seconds
Changes
3
Pipelines
1
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
4 additions
and
10 deletions
+4
-10
25DB.cdb
25DB.cdb
+0
-0
script/c100251003.lua
script/c100251003.lua
+1
-4
script/c100251004.lua
script/c100251004.lua
+3
-6
No files found.
25DB.cdb
View file @
e7333fc9
No preview for this file type
script/c100251003.lua
View file @
e7333fc9
...
...
@@ -46,15 +46,12 @@ function s.lvcalfilter(c)
local
se
=
c
:
GetSpecialSummonInfo
(
SUMMON_INFO_REASON_EFFECT
)
return
se
and
se
:
GetHandler
()
==
c
end
function
s
.
gcheck
(
c
,
cg
)
return
cg
:
IsContains
(
c
)
end
function
s
.
deop
(
e
,
tp
,
eg
,
ep
,
ev
,
re
,
r
,
rp
)
local
sg
=
Duel
.
GetMatchingGroup
(
Card
.
IsFaceup
,
tp
,
LOCATION_MZONE
,
LOCATION_MZONE
,
nil
)
if
sg
:
GetCount
()
>
0
then
local
cg
=
sg
:
Filter
(
s
.
lvcalfilter
,
nil
)
Duel
.
Destroy
(
sg
,
REASON_EFFECT
)
local
ct
=
Duel
.
GetOperatedGroup
():
Filter
(
s
.
gcheck
,
nil
,
cg
):
GetSum
(
Card
.
GetOriginalLevel
)
local
ct
=
(
Duel
.
GetOperatedGroup
()
&
cg
):
GetSum
(
Card
.
GetOriginalLevel
)
Duel
.
Damage
(
1
-
tp
,
ct
*
200
,
REASON_EFFECT
)
end
end
...
...
script/c100251004.lua
View file @
e7333fc9
...
...
@@ -33,15 +33,12 @@ end
function
s
.
damcon
(
e
)
return
e
:
GetHandler
():
GetOverlayCount
()
>
0
end
function
s
.
atkcon
(
e
,
tp
,
eg
,
ep
,
ev
,
re
,
r
,
rp
)
return
aux
.
bpcon
(
e
,
tp
,
eg
,
ep
,
ev
,
re
,
r
,
rp
)
end
function
s
.
atkcost
(
e
,
tp
,
eg
,
ep
,
ev
,
re
,
r
,
rp
,
chk
)
if
chk
==
0
then
return
e
:
GetHandler
():
CheckRemoveOverlayCard
(
tp
,
1
,
REASON_COST
)
end
e
:
GetHandler
():
RemoveOverlayCard
(
tp
,
1
,
1
,
REASON_COST
)
local
ct
=
Duel
.
GetOperatedGroup
():
GetFirst
()
if
ct
:
IsType
(
TYPE_MONSTER
)
then
e
:
SetLabel
(
ct
:
GetRace
())
e
:
SetLabel
(
ct
:
Get
Original
Race
())
else
e
:
SetLabel
(
0
)
end
...
...
@@ -61,8 +58,8 @@ end
function
s
.
atkop
(
e
,
tp
,
eg
,
ep
,
ev
,
re
,
r
,
rp
)
local
c
=
e
:
GetHandler
()
if
c
:
IsRelateToChain
()
and
e
:
GetHandler
()
:
GetEffectCount
(
EFFECT_EXTRA_ATTACK
)
==
0
and
e
:
GetHandler
()
:
GetEffectCount
(
EFFECT_EXTRA_ATTACK_MONSTER
)
==
0
then
and
c
:
GetEffectCount
(
EFFECT_EXTRA_ATTACK
)
==
0
and
c
:
GetEffectCount
(
EFFECT_EXTRA_ATTACK_MONSTER
)
==
0
then
local
e1
=
Effect
.
CreateEffect
(
c
)
e1
:
SetType
(
EFFECT_TYPE_SINGLE
)
e1
:
SetProperty
(
EFFECT_FLAG_CANNOT_DISABLE
)
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment