Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Sign in / Register
Toggle navigation
no81cards
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
Nemo Ma
no81cards
Commits
5a7a0e74
Commit
5a7a0e74
authored
Jun 02, 2025
by
POLYMER
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
fix
parent
71023ac6
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
153 additions
and
153 deletions
+153
-153
expansions/script/c11451964.lua
expansions/script/c11451964.lua
+14
-14
expansions/script/c116511113.lua
expansions/script/c116511113.lua
+139
-139
No files found.
expansions/script/c11451964.lua
View file @
5a7a0e74
...
...
@@ -57,17 +57,16 @@ function cm.op(e,tp,eg,ep,ev,re,r,rp)
local
c
=
e
:
GetHandler
()
Duel
.
Hint
(
HINT_CARD
,
0
,
m
)
local
e1
=
Effect
.
CreateEffect
(
c
)
e1
:
SetType
(
EFFECT_TYPE_FIELD
+
EFFECT_TYPE_CONTINUOUS
)
e1
:
SetCode
(
EVENT_CHAINING
)
--e1:SetProperty(EFFECT_FLAG_IGNORE_IMMUNE)
e1
:
SetType
(
EFFECT_TYPE_FIELD
)
--[[e1:SetCode(EVENT_CHAINING)
e1:SetCondition(cm.recon)
e1
:
SetOperation
(
cm
.
reop
)
--[[e1:SetType(EFFECT_TYPE_FIELD
)
e1:SetOperation(cm.reop)
--]]
e1
:
SetProperty
(
EFFECT_FLAG_IGNORE_IMMUNE
)
e1
:
SetCode
(
EFFECT_ACTIVATE_COST
)
e1
:
SetProperty
(
EFFECT_FLAG_PLAYER_TARGET
)
e1
:
SetTargetRange
(
1
,
1
)
e1
:
SetTarget
(
cm
.
actarget2
)
e1:SetOperation(cm.costop2)
--]]
e1
:
SetOperation
(
cm
.
costop2
)
Duel
.
RegisterEffect
(
e1
,
tp
)
local
eid
=
e1
:
GetFieldID
()
e1
:
SetLabel
(
eid
)
...
...
@@ -186,14 +185,15 @@ function cm.drtg(e,tp,eg,ep,ev,re,r,rp,chk)
end
function
cm
.
drop
(
e
,
tp
,
eg
,
ep
,
ev
,
re
,
r
,
rp
)
local
c
=
e
:
GetHandler
()
if
c
:
IsRelateToEffect
(
e
)
then
Duel
.
SSet
(
tp
,
c
)
end
local
ct
=
Duel
.
GetCounter
(
tp
,
1
,
1
,
0x1972
)
if
ct
>
0
then
Duel
.
Hint
(
HINT_SELECTMSG
,
tp
,
HINTMSG_REMOVE
)
local
rg
=
Duel
.
SelectMatchingCard
(
tp
,
Card
.
IsAbleToRemove
,
tp
,
LOCATION_ONFIELD
+
LOCATION_GRAVE
,
LOCATION_ONFIELD
+
LOCATION_GRAVE
,
1
,
ct
,
nil
)
if
#
rg
>
0
then
Duel
.
HintSelection
(
rg
)
Duel
.
Remove
(
rg
,
POS_FACEUP
,
REASON_EFFECT
)
if
c
:
IsRelateToEffect
(
e
)
and
Duel
.
SSet
(
tp
,
c
)
>
0
then
local
ct
=
Duel
.
GetCounter
(
tp
,
1
,
1
,
0x1972
)
if
ct
>
1
then
Duel
.
Hint
(
HINT_SELECTMSG
,
tp
,
HINTMSG_REMOVE
)
local
rg
=
Duel
.
SelectMatchingCard
(
tp
,
Card
.
IsAbleToRemove
,
tp
,
LOCATION_ONFIELD
+
LOCATION_GRAVE
,
LOCATION_ONFIELD
+
LOCATION_GRAVE
,
ct
//
2
,
ct
//
2
,
nil
)
if
#
rg
>
0
then
Duel
.
HintSelection
(
rg
)
Duel
.
Remove
(
rg
,
POS_FACEUP
,
REASON_EFFECT
)
end
end
end
end
\ No newline at end of file
expansions/script/c116511113.lua
View file @
5a7a0e74
function
c116511113
.
initial_effect
(
c
)
c
:
SetSPSummonOnce
(
116511113
)
c
:
EnableReviveLimit
()
local
e1
=
Effect
.
CreateEffect
(
c
)
e1
:
SetType
(
EFFECT_TYPE_FIELD
+
EFFECT_TYPE_CONTINUOUS
)
e1
:
SetCode
(
EVENT_BECOME_TARGET
)
e1
:
SetProperty
(
EFFECT_FLAG_UNCOPYABLE
)
e1
:
SetRange
(
LOCATION_EXTRA
)
e1
:
SetCondition
(
c116511113
.
xyzcon1
)
e1
:
SetOperation
(
c116511113
.
xyzop1
)
c
:
RegisterEffect
(
e1
)
local
e2
=
Effect
.
CreateEffect
(
c
)
e2
:
SetType
(
EFFECT_TYPE_FIELD
+
EFFECT_TYPE_CONTINUOUS
)
e2
:
SetCode
(
EVENT_BE_BATTLE_TARGET
)
e2
:
SetProperty
(
EFFECT_FLAG_UNCOPYABLE
)
e2
:
SetRange
(
LOCATION_EXTRA
)
e2
:
SetCondition
(
c116511113
.
xyzcon2
)
e2
:
SetOperation
(
c116511113
.
xyzop2
)
c
:
RegisterEffect
(
e2
)
local
e3
=
Effect
.
CreateEffect
(
c
)
e3
:
SetType
(
EFFECT_TYPE_SINGLE
)
e3
:
SetProperty
(
EFFECT_FLAG_SINGLE_RANGE
)
e3
:
SetRange
(
LOCATION_MZONE
)
e3
:
SetCode
(
EFFECT_IMMUNE_EFFECT
)
e3
:
SetCondition
(
c116511113
.
imcon
)
e3
:
SetValue
(
c116511113
.
efilter
)
c
:
RegisterEffect
(
e3
)
local
e4
=
Effect
.
CreateEffect
(
c
)
e4
:
SetCategory
(
CATEGORY_SUMMON
)
e4
:
SetDescription
(
aux
.
Stringid
(
116511113
,
0
))
e4
:
SetType
(
EFFECT_TYPE_QUICK_O
)
e4
:
SetHintTiming
(
0
,
TIMING_END_PHASE
)
e4
:
SetCode
(
EVENT_FREE_CHAIN
)
e4
:
SetCountLimit
(
1
,
EFFECT_COUNT_CODE_SINGLE
)
e4
:
SetRange
(
LOCATION_MZONE
)
e4
:
SetCost
(
c116511113
.
cost
)
e4
:
SetTarget
(
c116511113
.
sumtg
)
e4
:
SetOperation
(
c116511113
.
sumop
)
c
:
RegisterEffect
(
e4
)
local
e5
=
Effect
.
CreateEffect
(
c
)
e5
:
SetCategory
(
CATEGORY_SPECIAL_SUMMON
)
e5
:
SetDescription
(
aux
.
Stringid
(
116511113
,
1
))
e5
:
SetType
(
EFFECT_TYPE_QUICK_O
)
e5
:
SetHintTiming
(
0
,
TIMING_END_PHASE
)
e5
:
SetCode
(
EVENT_FREE_CHAIN
)
e5
:
SetCountLimit
(
1
,
EFFECT_COUNT_CODE_SINGLE
)
e5
:
SetRange
(
LOCATION_MZONE
)
e5
:
SetCost
(
c116511113
.
cost
)
e5
:
SetTarget
(
c116511113
.
sptg
)
e5
:
SetOperation
(
c116511113
.
spop
)
c
:
RegisterEffect
(
e5
)
local
e6
=
Effect
.
CreateEffect
(
c
)
e6
:
SetType
(
EFFECT_TYPE_FIELD
)
e6
:
SetCode
(
EFFECT_CANNOT_TRIGGER
)
e6
:
SetProperty
(
EFFECT_FLAG_SET_AVAILABLE
)
e6
:
SetRange
(
LOCATION_MZONE
)
e6
:
SetTargetRange
(
LOCATION_MZONE
,
LOCATION_MZONE
)
e6
:
SetTarget
(
c116511113
.
distg
)
c
:
RegisterEffect
(
e6
)
local
e7
=
Effect
.
CreateEffect
(
c
)
e7
:
SetType
(
EFFECT_TYPE_FIELD
)
e7
:
SetRange
(
LOCATION_MZONE
)
e7
:
SetCode
(
EFFECT_CANNOT_SPECIAL_SUMMON
)
e7
:
SetProperty
(
EFFECT_FLAG_PLAYER_TARGET
)
e7
:
SetTargetRange
(
1
,
1
)
e7
:
SetTarget
(
c116511113
.
sumlimit
)
c
:
RegisterEffect
(
e7
)
c
:
SetSPSummonOnce
(
116511113
)
c
:
EnableReviveLimit
()
local
e1
=
Effect
.
CreateEffect
(
c
)
e1
:
SetType
(
EFFECT_TYPE_FIELD
+
EFFECT_TYPE_CONTINUOUS
)
e1
:
SetCode
(
EVENT_BECOME_TARGET
)
e1
:
SetProperty
(
EFFECT_FLAG_UNCOPYABLE
)
e1
:
SetRange
(
LOCATION_EXTRA
)
e1
:
SetCondition
(
c116511113
.
xyzcon1
)
e1
:
SetOperation
(
c116511113
.
xyzop1
)
c
:
RegisterEffect
(
e1
)
local
e2
=
Effect
.
CreateEffect
(
c
)
e2
:
SetType
(
EFFECT_TYPE_FIELD
+
EFFECT_TYPE_CONTINUOUS
)
e2
:
SetCode
(
EVENT_BE_BATTLE_TARGET
)
e2
:
SetProperty
(
EFFECT_FLAG_UNCOPYABLE
)
e2
:
SetRange
(
LOCATION_EXTRA
)
e2
:
SetCondition
(
c116511113
.
xyzcon2
)
e2
:
SetOperation
(
c116511113
.
xyzop2
)
c
:
RegisterEffect
(
e2
)
local
e3
=
Effect
.
CreateEffect
(
c
)
e3
:
SetType
(
EFFECT_TYPE_SINGLE
)
e3
:
SetProperty
(
EFFECT_FLAG_SINGLE_RANGE
)
e3
:
SetRange
(
LOCATION_MZONE
)
e3
:
SetCode
(
EFFECT_IMMUNE_EFFECT
)
e3
:
SetCondition
(
c116511113
.
imcon
)
e3
:
SetValue
(
c116511113
.
efilter
)
c
:
RegisterEffect
(
e3
)
local
e4
=
Effect
.
CreateEffect
(
c
)
e4
:
SetCategory
(
CATEGORY_SUMMON
)
e4
:
SetDescription
(
aux
.
Stringid
(
116511113
,
1
))
e4
:
SetType
(
EFFECT_TYPE_QUICK_O
)
e4
:
SetHintTiming
(
0
,
TIMING_END_PHASE
)
e4
:
SetCode
(
EVENT_FREE_CHAIN
)
e4
:
SetCountLimit
(
1
,
EFFECT_COUNT_CODE_SINGLE
)
e4
:
SetRange
(
LOCATION_MZONE
)
e4
:
SetCost
(
c116511113
.
cost
)
e4
:
SetTarget
(
c116511113
.
sumtg
)
e4
:
SetOperation
(
c116511113
.
sumop
)
c
:
RegisterEffect
(
e4
)
local
e5
=
Effect
.
CreateEffect
(
c
)
e5
:
SetCategory
(
CATEGORY_SPECIAL_SUMMON
)
e5
:
SetDescription
(
aux
.
Stringid
(
116511113
,
0
))
e5
:
SetType
(
EFFECT_TYPE_QUICK_O
)
e5
:
SetHintTiming
(
0
,
TIMING_END_PHASE
)
e5
:
SetCode
(
EVENT_FREE_CHAIN
)
e5
:
SetCountLimit
(
1
,
EFFECT_COUNT_CODE_SINGLE
)
e5
:
SetRange
(
LOCATION_MZONE
)
e5
:
SetCost
(
c116511113
.
cost
)
e5
:
SetTarget
(
c116511113
.
sptg
)
e5
:
SetOperation
(
c116511113
.
spop
)
c
:
RegisterEffect
(
e5
)
local
e6
=
Effect
.
CreateEffect
(
c
)
e6
:
SetType
(
EFFECT_TYPE_FIELD
)
e6
:
SetCode
(
EFFECT_CANNOT_TRIGGER
)
e6
:
SetProperty
(
EFFECT_FLAG_SET_AVAILABLE
)
e6
:
SetRange
(
LOCATION_MZONE
)
e6
:
SetTargetRange
(
LOCATION_MZONE
,
LOCATION_MZONE
)
e6
:
SetTarget
(
c116511113
.
distg
)
c
:
RegisterEffect
(
e6
)
local
e7
=
Effect
.
CreateEffect
(
c
)
e7
:
SetType
(
EFFECT_TYPE_FIELD
)
e7
:
SetRange
(
LOCATION_MZONE
)
e7
:
SetCode
(
EFFECT_CANNOT_SPECIAL_SUMMON
)
e7
:
SetProperty
(
EFFECT_FLAG_PLAYER_TARGET
)
e7
:
SetTargetRange
(
1
,
1
)
e7
:
SetTarget
(
c116511113
.
sumlimit
)
c
:
RegisterEffect
(
e7
)
end
function
c116511113
.
mfilter1
(
c
,
tp
,
xyzc
)
return
c116511113
.
mfilter3
(
c
,
xyzc
)
and
c
:
IsFaceup
()
and
c
:
IsControler
(
tp
)
and
c
:
IsOnField
()
and
c
:
IsSetCard
(
0x108a
)
and
c
:
IsType
(
TYPE_MONSTER
)
and
not
c
:
IsType
(
TYPE_XYZ
)
and
Duel
.
GetLocationCountFromEx
(
tp
,
tp
,
c
,
xyzc
)
>
0
return
c116511113
.
mfilter3
(
c
,
xyzc
)
and
c
:
IsFaceup
()
and
c
:
IsControler
(
tp
)
and
c
:
IsOnField
()
and
c
:
IsSetCard
(
0x108a
)
and
c
:
IsType
(
TYPE_MONSTER
)
and
not
c
:
IsType
(
TYPE_XYZ
)
and
Duel
.
GetLocationCountFromEx
(
tp
,
tp
,
c
,
xyzc
)
>
0
end
function
c116511113
.
mfilter3
(
c
,
xyzc
)
return
c
:
IsCanBeXyzMaterial
(
xyzc
)
return
c
:
IsCanBeXyzMaterial
(
xyzc
)
end
function
c116511113
.
xyzcon1
(
e
,
tp
,
eg
,
ep
,
ev
,
re
,
r
,
rp
)
local
c
=
e
:
GetHandler
()
return
eg
:
IsExists
(
c116511113
.
mfilter1
,
1
,
nil
,
tp
,
c
)
and
not
eg
:
IsExists
(
aux
.
NOT
(
c116511113
.
mfilter3
),
1
,
nil
,
c
)
and
c
:
IsCanBeSpecialSummoned
(
e
,
SUMMON_TYPE_XYZ
,
tp
,
false
,
false
)
and
Duel
.
IsChainDisablable
(
ev
)
local
c
=
e
:
GetHandler
()
return
eg
:
IsExists
(
c116511113
.
mfilter1
,
1
,
nil
,
tp
,
c
)
and
not
eg
:
IsExists
(
aux
.
NOT
(
c116511113
.
mfilter3
),
1
,
nil
,
c
)
and
c
:
IsCanBeSpecialSummoned
(
e
,
SUMMON_TYPE_XYZ
,
tp
,
false
,
false
)
and
Duel
.
IsChainDisablable
(
ev
)
end
function
c116511113
.
xyzop1
(
e
,
tp
,
eg
,
ep
,
ev
,
re
,
r
,
rp
)
local
c
=
e
:
GetHandler
()
if
Duel
.
GetFlagEffect
(
tp
,
116511113
)
==
0
and
Duel
.
SelectYesNo
(
tp
,
aux
.
Stringid
(
116511113
,
3
))
then
Duel
.
RegisterFlagEffect
(
tp
,
116511113
,
RESET_CHAIN
,
0
,
1
)
local
mg
=
Group
.
CreateGroup
()
local
rc
=
re
:
GetHandler
()
if
rc
:
IsDisabled
()
then
return
end
Duel
.
NegateEffect
(
ev
)
mg
:
Merge
(
eg
)
if
not
rc
:
IsType
(
TYPE_TOKEN
)
then
mg
:
AddCard
(
rc
)
end
local
sg
=
Group
.
CreateGroup
()
for
tc
in
aux
.
Next
(
mg
)
do
tc
:
CancelToGrave
()
sg
:
Merge
(
tc
:
GetOverlayGroup
())
end
Duel
.
SendtoGrave
(
sg
,
REASON_RULE
)
c
:
SetMaterial
(
mg
)
Duel
.
Overlay
(
c
,
mg
)
Duel
.
SpecialSummon
(
c
,
SUMMON_TYPE_XYZ
,
tp
,
tp
,
false
,
false
,
POS_FACEUP
)
c
:
CompleteProcedure
()
end
local
c
=
e
:
GetHandler
()
if
Duel
.
GetFlagEffect
(
tp
,
116511113
)
==
0
and
Duel
.
SelectYesNo
(
tp
,
aux
.
Stringid
(
116511113
,
3
))
then
Duel
.
RegisterFlagEffect
(
tp
,
116511113
,
RESET_CHAIN
,
0
,
1
)
local
mg
=
Group
.
CreateGroup
()
local
rc
=
re
:
GetHandler
()
if
rc
:
IsDisabled
()
then
return
end
Duel
.
NegateEffect
(
ev
)
mg
:
Merge
(
eg
)
if
not
rc
:
IsType
(
TYPE_TOKEN
)
then
mg
:
AddCard
(
rc
)
end
local
sg
=
Group
.
CreateGroup
()
for
tc
in
aux
.
Next
(
mg
)
do
tc
:
CancelToGrave
()
sg
:
Merge
(
tc
:
GetOverlayGroup
())
end
Duel
.
SendtoGrave
(
sg
,
REASON_RULE
)
c
:
SetMaterial
(
mg
)
Duel
.
Overlay
(
c
,
mg
)
Duel
.
SpecialSummon
(
c
,
SUMMON_TYPE_XYZ
,
tp
,
tp
,
false
,
false
,
POS_FACEUP
)
c
:
CompleteProcedure
()
end
end
function
c116511113
.
xyzcon2
(
e
,
tp
,
eg
,
ep
,
ev
,
re
,
r
,
rp
)
local
c
=
e
:
GetHandler
()
local
tp
=
e
:
GetHandlerPlayer
()
return
eg
:
IsExists
(
c116511113
.
mfilter1
,
1
,
nil
,
tp
,
c
)
and
not
eg
:
IsExists
(
aux
.
NOT
(
c116511113
.
mfilter3
),
1
,
nil
,
c
)
and
c
:
IsCanBeSpecialSummoned
(
e
,
SUMMON_TYPE_XYZ
,
tp
,
true
,
false
)
local
c
=
e
:
GetHandler
()
local
tp
=
e
:
GetHandlerPlayer
()
return
eg
:
IsExists
(
c116511113
.
mfilter1
,
1
,
nil
,
tp
,
c
)
and
not
eg
:
IsExists
(
aux
.
NOT
(
c116511113
.
mfilter3
),
1
,
nil
,
c
)
and
c
:
IsCanBeSpecialSummoned
(
e
,
SUMMON_TYPE_XYZ
,
tp
,
true
,
false
)
end
function
c116511113
.
xyzop2
(
e
,
tp
,
eg
,
ep
,
ev
,
re
,
r
,
rp
)
local
c
=
e
:
GetHandler
()
if
not
c
:
IsCanBeSpecialSummoned
(
e
,
SUMMON_TYPE_XYZ
,
tp
,
true
,
false
)
then
return
end
if
Duel
.
GetFlagEffect
(
tp
,
116511113
)
==
0
and
Duel
.
SelectYesNo
(
tp
,
aux
.
Stringid
(
116511113
,
3
))
then
Duel
.
RegisterFlagEffect
(
tp
,
116511113
,
RESET_CHAIN
,
0
,
1
)
local
mg
=
Group
.
CreateGroup
()
local
rc
=
Duel
.
GetAttacker
()
Duel
.
NegateAttack
()
mg
:
Merge
(
eg
)
if
rc
:
IsCanBeXyzMaterial
(
c
)
then
mg
:
AddCard
(
rc
)
end
local
sg
=
Group
.
CreateGroup
()
for
tc
in
aux
.
Next
(
mg
)
do
tc
:
CancelToGrave
()
sg
:
Merge
(
tc
:
GetOverlayGroup
())
end
Duel
.
SendtoGrave
(
sg
,
REASON_RULE
)
c
:
SetMaterial
(
mg
)
Duel
.
Overlay
(
c
,
mg
)
Duel
.
SpecialSummon
(
c
,
SUMMON_TYPE_XYZ
,
tp
,
tp
,
false
,
false
,
POS_FACEUP
)
c
:
CompleteProcedure
()
end
local
c
=
e
:
GetHandler
()
if
not
c
:
IsCanBeSpecialSummoned
(
e
,
SUMMON_TYPE_XYZ
,
tp
,
true
,
false
)
then
return
end
if
Duel
.
GetFlagEffect
(
tp
,
116511113
)
==
0
and
Duel
.
SelectYesNo
(
tp
,
aux
.
Stringid
(
116511113
,
3
))
then
Duel
.
RegisterFlagEffect
(
tp
,
116511113
,
RESET_CHAIN
,
0
,
1
)
local
mg
=
Group
.
CreateGroup
()
local
rc
=
Duel
.
GetAttacker
()
Duel
.
NegateAttack
()
mg
:
Merge
(
eg
)
if
rc
:
IsCanBeXyzMaterial
(
c
)
then
mg
:
AddCard
(
rc
)
end
local
sg
=
Group
.
CreateGroup
()
for
tc
in
aux
.
Next
(
mg
)
do
tc
:
CancelToGrave
()
sg
:
Merge
(
tc
:
GetOverlayGroup
())
end
Duel
.
SendtoGrave
(
sg
,
REASON_RULE
)
c
:
SetMaterial
(
mg
)
Duel
.
Overlay
(
c
,
mg
)
Duel
.
SpecialSummon
(
c
,
SUMMON_TYPE_XYZ
,
tp
,
tp
,
false
,
false
,
POS_FACEUP
)
c
:
CompleteProcedure
()
end
end
function
c116511113
.
imcon
(
e
)
return
e
:
GetHandler
():
GetOverlayCount
()
>
0
return
e
:
GetHandler
():
GetOverlayCount
()
>
0
end
function
c116511113
.
efilter
(
e
,
te
)
return
te
:
IsActiveType
(
TYPE_TRAP
)
return
te
:
IsActiveType
(
TYPE_TRAP
)
end
function
c116511113
.
cost
(
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
)
if
chk
==
0
then
return
e
:
GetHandler
():
CheckRemoveOverlayCard
(
tp
,
1
,
REASON_COST
)
end
e
:
GetHandler
():
RemoveOverlayCard
(
tp
,
1
,
1
,
REASON_COST
)
end
function
c116511113
.
sumfilter
(
c
)
return
c
:
IsSetCard
(
0x108a
)
and
c
:
IsSummonable
(
true
,
nil
)
return
c
:
IsSetCard
(
0x108a
)
and
c
:
IsSummonable
(
true
,
nil
)
end
function
c116511113
.
sumtg
(
e
,
tp
,
eg
,
ep
,
ev
,
re
,
r
,
rp
,
chk
)
if
chk
==
0
then
return
Duel
.
GetLocationCount
(
tp
,
LOCATION_MZONE
)
>
0
and
Duel
.
IsExistingMatchingCard
(
c116511113
.
sumfilter
,
tp
,
LOCATION_DECK
,
0
,
1
,
nil
)
end
Duel
.
SetOperationInfo
(
0
,
CATEGORY_SUMMON
,
nil
,
1
,
0
,
0
)
if
chk
==
0
then
return
Duel
.
GetLocationCount
(
tp
,
LOCATION_MZONE
)
>
0
and
Duel
.
IsExistingMatchingCard
(
c116511113
.
sumfilter
,
tp
,
LOCATION_DECK
,
0
,
1
,
nil
)
end
Duel
.
SetOperationInfo
(
0
,
CATEGORY_SUMMON
,
nil
,
1
,
0
,
0
)
end
function
c116511113
.
sumop
(
e
,
tp
,
eg
,
ep
,
ev
,
re
,
r
,
rp
)
if
Duel
.
GetLocationCount
(
tp
,
LOCATION_MZONE
)
<=
0
then
return
end
Duel
.
Hint
(
HINT_SELECTMSG
,
tp
,
HINTMSG_SUMMON
)
local
g
=
Duel
.
SelectMatchingCard
(
tp
,
c116511113
.
sumfilter
,
tp
,
LOCATION_DECK
,
0
,
1
,
1
,
nil
)
if
g
:
GetCount
()
>
0
then
Duel
.
Summon
(
tp
,
g
:
GetFirst
(),
true
,
nil
)
end
if
Duel
.
GetLocationCount
(
tp
,
LOCATION_MZONE
)
<=
0
then
return
end
Duel
.
Hint
(
HINT_SELECTMSG
,
tp
,
HINTMSG_SUMMON
)
local
g
=
Duel
.
SelectMatchingCard
(
tp
,
c116511113
.
sumfilter
,
tp
,
LOCATION_DECK
,
0
,
1
,
1
,
nil
)
if
g
:
GetCount
()
>
0
then
Duel
.
Summon
(
tp
,
g
:
GetFirst
(),
true
,
nil
)
end
end
function
c116511113
.
spfilter
(
c
,
e
,
tp
)
return
c
:
IsSetCard
(
0x108a
)
and
c
:
IsCanBeSpecialSummoned
(
e
,
0
,
tp
,
false
,
false
)
return
c
:
IsSetCard
(
0x108a
)
and
c
:
IsCanBeSpecialSummoned
(
e
,
0
,
tp
,
false
,
false
)
end
function
c116511113
.
sptg
(
e
,
tp
,
eg
,
ep
,
ev
,
re
,
r
,
rp
,
chk
)
if
chk
==
0
then
return
Duel
.
GetLocationCount
(
tp
,
LOCATION_MZONE
)
>
0
and
Duel
.
IsExistingMatchingCard
(
c116511113
.
spfilter
,
tp
,
LOCATION_DECK
,
0
,
1
,
nil
,
e
,
tp
)
end
Duel
.
SetOperationInfo
(
0
,
CATEGORY_SPECIAL_SUMMON
,
nil
,
1
,
tp
,
LOCATION_DECK
)
if
chk
==
0
then
return
Duel
.
GetLocationCount
(
tp
,
LOCATION_MZONE
)
>
0
and
Duel
.
IsExistingMatchingCard
(
c116511113
.
spfilter
,
tp
,
LOCATION_DECK
,
0
,
1
,
nil
,
e
,
tp
)
end
Duel
.
SetOperationInfo
(
0
,
CATEGORY_SPECIAL_SUMMON
,
nil
,
1
,
tp
,
LOCATION_DECK
)
end
function
c116511113
.
spop
(
e
,
tp
,
eg
,
ep
,
ev
,
re
,
r
,
rp
)
if
Duel
.
GetLocationCount
(
tp
,
LOCATION_MZONE
)
<=
0
then
return
end
Duel
.
Hint
(
HINT_SELECTMSG
,
tp
,
HINTMSG_SPSUMMON
)
local
g
=
Duel
.
SelectMatchingCard
(
tp
,
c116511113
.
spfilter
,
tp
,
LOCATION_DECK
,
0
,
1
,
1
,
nil
,
e
,
tp
)
if
g
:
GetCount
()
>
0
then
Duel
.
SpecialSummon
(
g
,
0
,
tp
,
tp
,
false
,
false
,
POS_FACEUP
)
end
if
Duel
.
GetLocationCount
(
tp
,
LOCATION_MZONE
)
<=
0
then
return
end
Duel
.
Hint
(
HINT_SELECTMSG
,
tp
,
HINTMSG_SPSUMMON
)
local
g
=
Duel
.
SelectMatchingCard
(
tp
,
c116511113
.
spfilter
,
tp
,
LOCATION_DECK
,
0
,
1
,
1
,
nil
,
e
,
tp
)
if
g
:
GetCount
()
>
0
then
Duel
.
SpecialSummon
(
g
,
0
,
tp
,
tp
,
false
,
false
,
POS_FACEUP
)
end
end
function
c116511113
.
distg
(
e
,
c
)
return
not
c
:
IsSetCard
(
0x108a
)
return
not
c
:
IsSetCard
(
0x108a
)
end
function
c116511113
.
sumlimit
(
e
,
c
,
sump
,
sumtype
,
sumpos
,
targetp
,
se
)
return
not
c
:
IsSetCard
(
0x108a
)
end
\ No newline at end of file
return
not
c
:
IsSetCard
(
0x108a
)
end
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