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
1fc97d5f
Commit
1fc97d5f
authored
Oct 09, 2025
by
wind2009
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix
parent
29c7f9e1
Pipeline
#40977
passed with stages
in 5 minutes and 31 seconds
Changes
4
Pipelines
1
Show whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
25 additions
and
26 deletions
+25
-26
script/c101303039.lua
script/c101303039.lua
+1
-1
script/c101303040.lua
script/c101303040.lua
+1
-1
script/c101303071.lua
script/c101303071.lua
+7
-5
script/c101303072.lua
script/c101303072.lua
+16
-19
No files found.
script/c101303039.lua
View file @
1fc97d5f
script/c101303040.lua
View file @
1fc97d5f
script/c101303071.lua
View file @
1fc97d5f
...
...
@@ -32,11 +32,12 @@ function s.initial_effect(c)
c
:
RegisterEffect
(
e3
)
end
function
s
.
mvtg
(
e
,
tp
,
eg
,
ep
,
ev
,
re
,
r
,
rp
,
chk
,
chkc
)
if
chkc
then
return
chkc
:
IsLocation
(
LOCATION_MZONE
)
and
chkc
:
IsControler
(
tp
)
end
local
c
=
e
:
GetHandler
()
if
chkc
then
return
chkc
:
IsLocation
(
LOCATION_MZONE
)
and
chkc
:
IsControler
(
tp
)
and
chkc
:
IsFaceup
()
end
if
chk
==
0
then
return
Duel
.
IsExistingTarget
(
Card
.
IsFaceup
,
tp
,
LOCATION_MZONE
,
0
,
1
,
nil
)
and
Duel
.
GetLocationCount
(
tp
,
LOCATION_MZONE
,
PLAYER_NONE
,
0
)
>
0
and
Duel
.
GetFlagEffect
(
tp
,
id
)
==
0
end
Duel
.
RegisterFlagEffect
(
tp
,
id
,
RESET_CHAIN
,
0
,
1
)
and
c
:
GetFlagEffect
(
tp
,
id
)
==
0
end
c
:
RegisterFlagEffect
(
id
,
RESET_CHAIN
,
0
,
1
)
Duel
.
Hint
(
HINT_SELECTMSG
,
tp
,
HINTMSG_TARGET
)
Duel
.
SelectTarget
(
tp
,
Card
.
IsFaceup
,
tp
,
LOCATION_MZONE
,
0
,
1
,
1
,
nil
)
end
...
...
@@ -57,8 +58,9 @@ function s.discon(e,tp,eg,ep,ev,re,r,rp)
and
Duel
.
IsExistingMatchingCard
(
s
.
cfilter
,
tp
,
LOCATION_MZONE
,
0
,
3
,
nil
)
end
function
s
.
distg
(
e
,
tp
,
eg
,
ep
,
ev
,
re
,
r
,
rp
,
chk
)
if
chk
==
0
then
return
Duel
.
GetFlagEffect
(
tp
,
id
)
==
0
end
Duel
.
RegisterFlagEffect
(
tp
,
id
,
RESET_CHAIN
,
0
,
1
)
local
c
=
e
:
GetHandler
()
if
chk
==
0
then
return
c
:
GetFlagEffect
(
tp
,
id
)
==
0
end
c
:
RegisterFlagEffect
(
id
,
RESET_CHAIN
,
0
,
1
)
Duel
.
SetOperationInfo
(
0
,
CATEGORY_DISABLE
,
eg
,
1
,
0
,
0
)
end
function
s
.
cdfilter
(
c
)
...
...
script/c101303072.lua
View file @
1fc97d5f
...
...
@@ -6,31 +6,28 @@ function s.initial_effect(c)
e1
:
SetType
(
EFFECT_TYPE_ACTIVATE
)
e1
:
SetCode
(
EVENT_FREE_CHAIN
)
c
:
RegisterEffect
(
e1
)
--
mus
t attack
--
canno
t attack
local
e2
=
Effect
.
CreateEffect
(
c
)
e2
:
SetType
(
EFFECT_TYPE_FIELD
)
e2
:
SetCode
(
EFFECT_
MUST_ATTACK
)
e2
:
SetCode
(
EFFECT_
CANNOT_SELECT_BATTLE_TARGET
)
e2
:
SetRange
(
LOCATION_SZONE
)
e2
:
SetTargetRange
(
0
,
LOCATION_MZONE
)
e2
:
SetCondition
(
s
.
atkcon
)
e2
:
SetValue
(
s
.
atklimit
)
c
:
RegisterEffect
(
e2
)
local
e3
=
e2
:
Clone
()
e3
:
SetCode
(
EFFECT_MUST_ATTACK_MONSTER
)
e3
:
SetValue
(
s
.
atklimit
)
c
:
RegisterEffect
(
e3
)
--spsummon
local
e
4
=
Effect
.
CreateEffect
(
c
)
e
4
:
SetCategory
(
CATEGORY_SPECIAL_SUMMON
+
CATEGORY_DISABLE
)
e
4
:
SetType
(
EFFECT_TYPE_QUICK_O
)
e
4
:
SetCode
(
EVENT_FREE_CHAIN
)
e
4
:
SetRange
(
LOCATION_SZONE
)
e
4
:
SetProperty
(
EFFECT_FLAG_CARD_TARGET
)
e
4
:
SetHintTiming
(
TIMING_END_PHASE
)
e
4
:
SetCountLimit
(
1
,
id
)
e
4
:
SetCost
(
s
.
spcost
)
e
4
:
SetTarget
(
s
.
sptg
)
e
4
:
SetOperation
(
s
.
spop
)
c
:
RegisterEffect
(
e
4
)
local
e
3
=
Effect
.
CreateEffect
(
c
)
e
3
:
SetCategory
(
CATEGORY_SPECIAL_SUMMON
+
CATEGORY_DISABLE
)
e
3
:
SetType
(
EFFECT_TYPE_QUICK_O
)
e
3
:
SetCode
(
EVENT_FREE_CHAIN
)
e
3
:
SetRange
(
LOCATION_SZONE
)
e
3
:
SetProperty
(
EFFECT_FLAG_CARD_TARGET
)
e
3
:
SetHintTiming
(
TIMING_END_PHASE
)
e
3
:
SetCountLimit
(
1
,
id
)
e
3
:
SetCost
(
s
.
spcost
)
e
3
:
SetTarget
(
s
.
sptg
)
e
3
:
SetOperation
(
s
.
spop
)
c
:
RegisterEffect
(
e
3
)
end
function
s
.
atkfilter
(
c
)
return
c
:
GetSequence
()
==
2
...
...
@@ -39,7 +36,7 @@ function s.atkcon(e)
return
Duel
.
IsExistingMatchingCard
(
s
.
atkfilter
,
e
:
GetHandlerPlayer
(),
LOCATION_MZONE
,
0
,
1
,
nil
)
end
function
s
.
atklimit
(
e
,
c
)
return
c
:
GetSequence
()
=
=
2
return
c
:
GetSequence
()
~
=
2
end
function
s
.
costfilter
(
c
,
e
,
tp
)
return
c
:
IsType
(
TYPE_MONSTER
)
and
c
:
IsAbleToGraveAsCost
()
and
Duel
.
GetMZoneCount
(
tp
,
c
)
>
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