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
1
Issues
1
List
Boards
Labels
Service Desk
Milestones
Merge Requests
1
Merge Requests
1
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
a14faeec
Commit
a14faeec
authored
Jul 25, 2025
by
Amiya
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
修复
parent
85338828
Pipeline
#39498
failed with stages
in 3 minutes and 17 seconds
Changes
8
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
8 changed files
with
29 additions
and
30 deletions
+29
-30
DOOD.cdb
DOOD.cdb
+0
-0
script/c101302027.lua
script/c101302027.lua
+4
-4
script/c101302028.lua
script/c101302028.lua
+12
-12
script/c101302029.lua
script/c101302029.lua
+1
-1
script/c101302031.lua
script/c101302031.lua
+2
-2
script/c101302048.lua
script/c101302048.lua
+1
-1
script/c101302072.lua
script/c101302072.lua
+5
-6
script/c101302080.lua
script/c101302080.lua
+4
-4
No files found.
DOOD.cdb
View file @
a14faeec
No preview for this file type
script/c101302027.lua
View file @
a14faeec
...
...
@@ -31,8 +31,8 @@ end
function
s
.
tgcon
(
e
,
tp
,
eg
,
ep
,
ev
,
re
,
r
,
rp
)
if
rp
~=
1
-
tp
or
not
re
:
IsHasProperty
(
EFFECT_FLAG_CARD_TARGET
)
then
return
false
end
local
g
=
Duel
.
GetChainInfo
(
ev
,
CHAININFO_TARGET_CARDS
)
local
rc
=
re
:
GetHandler
(
)
return
rc
:
IsLocation
(
LOCATION_MZONE
)
and
re
:
IsActiveType
(
TYPE_MONSTER
)
and
g
and
g
:
IsExists
(
s
.
cfilter
,
1
,
nil
,
tp
)
local
loc
=
Duel
.
GetChainInfo
(
ev
,
CHAININFO_TRIGGERING_LOCATION
)
return
(
loc
&
LOCATION_ONFIELD
)
~=
0
and
re
:
IsActiveType
(
TYPE_MONSTER
)
and
g
and
g
:
IsExists
(
s
.
cfilter
,
1
,
nil
,
tp
)
end
function
s
.
sptg
(
e
,
tp
,
eg
,
ep
,
ev
,
re
,
r
,
rp
,
chk
)
if
chk
==
0
then
return
Duel
.
GetLocationCount
(
tp
,
LOCATION_MZONE
)
>
0
...
...
@@ -64,7 +64,7 @@ function s.spop2(e,tp,eg,ep,ev,re,r,rp)
local
c
=
e
:
GetHandler
()
if
c
:
IsRelateToChain
()
and
Duel
.
SpecialSummon
(
c
,
0
,
tp
,
tp
,
false
,
false
,
POS_FACEUP
)
~=
0
then
local
ac
=
Duel
.
GetFirstTarget
()
if
ac
and
ac
:
IsRelateToEffect
(
e
)
then
if
ac
and
ac
:
IsRelateToEffect
(
e
)
and
ac
:
IsType
(
TYPE_MONSTER
)
then
s
.
cfop
(
e
,
tp
,
eg
,
ep
,
ev
,
re
,
r
,
rp
,
ac
)
end
end
...
...
@@ -82,7 +82,7 @@ function s.cfop(e,tp,eg,ep,ev,re,r,rp,ac)
e1
:
SetType
(
EFFECT_TYPE_SINGLE
)
e1
:
SetCode
(
EFFECT_SET_ATTACK_FINAL
)
e1
:
SetValue
(
ac
:
GetAttack
()
*
2
)
e1
:
SetReset
(
RESET_EVENT
+
RESETS_STANDARD
+
RESET_PHASE
+
PHASE_END
)
e1
:
SetReset
(
RESET_EVENT
+
RESETS_STANDARD
)
ac
:
RegisterEffect
(
e1
)
elseif
tc
:
IsType
(
TYPE_TRAP
)
then
Duel
.
Remove
(
ac
,
POS_FACEUP
,
REASON_EFFECT
)
...
...
script/c101302028.lua
View file @
a14faeec
...
...
@@ -25,18 +25,18 @@ function s.initial_effect(c)
e2
:
SetOperation
(
s
.
setop
)
c
:
RegisterEffect
(
e2
)
--special summon
local
e
1
=
Effect
.
CreateEffect
(
c
)
e
1
:
SetDescription
(
aux
.
Stringid
(
id
,
0
))
e
1
:
SetCategory
(
CATEGORY_SPECIAL_SUMMON
)
e
1
:
SetType
(
EFFECT_TYPE_FIELD
+
EFFECT_TYPE_TRIGGER_O
)
e
1
:
SetCode
(
EVENT_CHANGE_POS
)
e
1
:
SetProperty
(
EFFECT_FLAG_DELAY
)
e
1
:
SetRange
(
LOCATION_MZONE
)
e
1
:
SetCountLimit
(
1
)
e
1
:
SetCondition
(
s
.
thcon
)
e
1
:
SetTarget
(
s
.
thtg
)
e
1
:
SetOperation
(
s
.
thop
)
c
:
RegisterEffect
(
e
1
)
local
e
3
=
Effect
.
CreateEffect
(
c
)
e
3
:
SetDescription
(
aux
.
Stringid
(
id
,
2
))
e
3
:
SetCategory
(
CATEGORY_SPECIAL_SUMMON
)
e
3
:
SetType
(
EFFECT_TYPE_FIELD
+
EFFECT_TYPE_TRIGGER_O
)
e
3
:
SetCode
(
EVENT_CHANGE_POS
)
e
3
:
SetProperty
(
EFFECT_FLAG_DELAY
)
e
3
:
SetRange
(
LOCATION_MZONE
)
e
3
:
SetCountLimit
(
1
)
e
3
:
SetCondition
(
s
.
thcon
)
e
3
:
SetTarget
(
s
.
thtg
)
e
3
:
SetOperation
(
s
.
thop
)
c
:
RegisterEffect
(
e
3
)
end
function
s
.
costfilter
(
c
)
return
c
:
IsType
(
TYPE_SPELL
)
and
c
:
IsAbleToRemoveAsCost
()
...
...
script/c101302029.lua
View file @
a14faeec
...
...
@@ -73,7 +73,7 @@ function s.gspop(e,tp,eg,ep,ev,re,r,rp)
local
e1
=
Effect
.
CreateEffect
(
e
:
GetHandler
())
e1
:
SetType
(
EFFECT_TYPE_SINGLE
)
e1
:
SetCode
(
EFFECT_SET_ATTACK
)
e1
:
SetValue
(
0
)
e1
:
SetValue
(
100
0
)
e1
:
SetReset
(
RESET_EVENT
+
RESETS_STANDARD
)
tc
:
RegisterEffect
(
e1
)
local
e2
=
e1
:
Clone
()
...
...
script/c101302031.lua
View file @
a14faeec
...
...
@@ -32,7 +32,7 @@ function s.spcon(e,tp,eg,ep,ev,re,r,rp)
return
ep
==
tp
and
bit
.
band
(
r
,
REASON_BATTLE
+
REASON_EFFECT
)
~=
0
end
function
s
.
spfilter
(
c
,
e
,
tp
)
return
c
:
IsCanBeSpecialSummoned
(
e
,
0
,
tp
,
false
,
false
)
return
c
:
Is
LevelAbove
(
3
)
and
c
:
Is
CanBeSpecialSummoned
(
e
,
0
,
tp
,
false
,
false
)
and
(
not
c
:
IsLocation
(
LOCATION_EXTRA
)
and
Duel
.
GetLocationCount
(
tp
,
LOCATION_MZONE
)
>
0
or
Duel
.
GetLocationCountFromEx
(
tp
,
tp
,
nil
,
c
)
>
0
)
end
...
...
@@ -43,7 +43,7 @@ function s.sptg(e,tp,eg,ep,ev,re,r,rp,chk)
and
Duel
.
IsExistingMatchingCard
(
s
.
spfilter
,
tp
,
loc
,
0
,
1
,
nil
,
e
,
tp
)
end
Duel
.
SetOperationInfo
(
0
,
CATEGORY_SPECIAL_SUMMON
,
nil
,
1
,
tp
,
loc
)
end
function
s
.
sp
tg
(
e
,
tp
,
eg
,
ep
,
ev
,
re
,
r
,
rp
)
function
s
.
sp
op
(
e
,
tp
,
eg
,
ep
,
ev
,
re
,
r
,
rp
)
local
loc
=
LOCATION_HAND
+
LOCATION_GRAVE
if
ev
>=
2000
then
loc
=
loc
+
LOCATION_DECK
+
LOCATION_EXTRA
end
Duel
.
Hint
(
HINT_SELECTMSG
,
tp
,
HINTMSG_SPSUMMON
)
...
...
script/c101302048.lua
View file @
a14faeec
...
...
@@ -64,7 +64,7 @@ function s.matop(e,tp,eg,ep,ev,re,r,rp)
end
function
s
.
efilter
(
re
)
return
function
(
e
,
te
)
return
te
==
re
return
te
==
re
and
te
:
IsActivated
()
end
end
function
s
.
setfilter
(
c
)
...
...
script/c101302072.lua
View file @
a14faeec
...
...
@@ -62,8 +62,9 @@ function s.tgtg(e,tp,eg,ep,ev,re,r,rp,chk,chkc)
end
function
s
.
tgop
(
e
,
tp
,
eg
,
ep
,
ev
,
re
,
r
,
rp
)
local
tc
=
Duel
.
GetFirstTarget
()
if
not
tc
or
not
tc
:
IsRelateToChain
()
or
not
tc
:
IsType
(
TYPE_MONSTER
)
then
return
end
if
e
:
GetLabel
()
==
1
then
if
tc
:
Is
RelateToChain
()
and
tc
:
Is
Faceup
()
then
if
tc
:
IsFaceup
()
then
local
e1
=
Effect
.
CreateEffect
(
e
:
GetHandler
())
e1
:
SetType
(
EFFECT_TYPE_SINGLE
)
e1
:
SetCode
(
EFFECT_UPDATE_ATTACK
)
...
...
@@ -72,7 +73,7 @@ function s.tgop(e,tp,eg,ep,ev,re,r,rp)
tc
:
RegisterEffect
(
e1
)
end
elseif
e
:
GetLabel
()
==
2
then
if
tc
:
Is
RelateToChain
()
and
tc
:
Is
Faceup
()
then
if
tc
:
IsFaceup
()
then
local
e1
=
Effect
.
CreateEffect
(
e
:
GetHandler
())
e1
:
SetType
(
EFFECT_TYPE_SINGLE
)
e1
:
SetCode
(
EFFECT_SET_ATTACK_FINAL
)
...
...
@@ -81,7 +82,7 @@ function s.tgop(e,tp,eg,ep,ev,re,r,rp)
tc
:
RegisterEffect
(
e1
)
end
elseif
e
:
GetLabel
()
==
3
then
if
tc
:
IsFaceup
()
and
tc
:
Is
RelateToChain
()
and
tc
:
Is
CanBeDisabledByEffect
(
e
)
then
if
tc
:
IsFaceup
()
and
tc
:
IsCanBeDisabledByEffect
(
e
)
then
Duel
.
NegateRelatedChain
(
tc
,
RESET_TURN_SET
)
local
e1
=
Effect
.
CreateEffect
(
e
:
GetHandler
())
e1
:
SetType
(
EFFECT_TYPE_SINGLE
)
...
...
@@ -96,8 +97,6 @@ function s.tgop(e,tp,eg,ep,ev,re,r,rp)
tc
:
RegisterEffect
(
e2
)
end
elseif
e
:
GetLabel
()
==
4
then
if
tc
:
IsRelateToChain
()
then
Duel
.
Destroy
(
tc
,
REASON_EFFECT
)
end
Duel
.
Destroy
(
tc
,
REASON_EFFECT
)
end
end
\ No newline at end of file
script/c101302080.lua
View file @
a14faeec
...
...
@@ -3,10 +3,10 @@ local s,id,o=GetID()
function
s
.
initial_effect
(
c
)
c
:
EnableCounterPermit
(
0x70
)
--Activate
local
e
1
=
Effect
.
CreateEffect
(
c
)
e
1
:
SetType
(
EFFECT_TYPE_ACTIVATE
)
e
1
:
SetCode
(
EVENT_FREE_CHAIN
)
c
:
RegisterEffect
(
e
1
)
local
e
0
=
Effect
.
CreateEffect
(
c
)
e
0
:
SetType
(
EFFECT_TYPE_ACTIVATE
)
e
0
:
SetCode
(
EVENT_FREE_CHAIN
)
c
:
RegisterEffect
(
e
0
)
--to extra
local
e1
=
Effect
.
CreateEffect
(
c
)
e1
:
SetDescription
(
aux
.
Stringid
(
id
,
0
))
...
...
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