Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Sign in / Register
Toggle navigation
Y
ygopro-THC-cards
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
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
HiiragiGuardians
ygopro-THC-cards
Commits
eea13527
You need to sign in or sign up before continuing.
Commit
eea13527
authored
Jan 16, 2022
by
Grajade
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Update c21133.lua
parent
cd412cd1
Pipeline
#8771
passed with stage
in 32 seconds
Changes
1
Pipelines
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
30 additions
and
19 deletions
+30
-19
script/c21133.lua
script/c21133.lua
+30
-19
No files found.
script/c21133.lua
View file @
eea13527
...
...
@@ -24,7 +24,7 @@ function c21133.initial_effect(c)
c
:
RegisterEffect
(
e3
)
end
function
c21133
.
rfilter
(
c
)
return
c
:
IsSetCard
(
0x208
)
return
c
:
IsSetCard
(
0x208
)
and
c
:
IsType
(
TYPE_MONSTER
)
end
function
c21133
.
cost
(
e
,
tp
,
eg
,
ep
,
ev
,
re
,
r
,
rp
,
chk
)
if
chk
==
0
then
return
Duel
.
CheckReleaseGroupEx
(
tp
,
c21133
.
rfilter
,
1
,
nil
)
end
...
...
@@ -32,7 +32,7 @@ function c21133.cost(e,tp,eg,ep,ev,re,r,rp,chk)
Duel
.
Release
(
g
,
REASON_COST
)
end
function
c21133
.
filter
(
c
)
return
c
:
IsSetCard
(
0x522a
)
and
c
:
IsType
(
TYPE_
SPELL
+
TYPE_TRAP
)
and
c
:
IsSSetable
(
true
)
return
c
:
IsSetCard
(
0x522a
)
and
c
:
IsType
(
TYPE_
TRAP
)
and
c
:
IsSSetable
(
)
end
function
c21133
.
settg
(
e
,
tp
,
eg
,
ep
,
ev
,
re
,
r
,
rp
,
chk
)
if
chk
==
0
then
return
Duel
.
GetLocationCount
(
tp
,
LOCATION_SZONE
)
>
1
...
...
@@ -47,33 +47,44 @@ function c21133.setop(e,tp,eg,ep,ev,re,r,rp)
Duel
.
ConfirmCards
(
1
-
tp
,
g
)
end
end
function
c21133
.
rmfilter
(
c
,
s
p
)
return
c
:
GetSummonPlayer
()
==
sp
and
c
:
IsAbleToRemove
()
and
not
c
:
IsPreviousLocation
(
LOCATION_HAND
)
and
c
:
IsLocation
(
LOCATION_MZONE
)
function
c21133
.
rmfilter
(
c
,
t
p
)
return
c
:
IsSummonPlayer
(
tp
)
and
c
:
IsAbleToRemove
(
tp
,
POS_FACEDOWN
)
and
not
c
:
IsPreviousLocation
(
LOCATION_HAND
)
end
function
c21133
.
rmtg
(
e
,
tp
,
eg
,
ep
,
ev
,
re
,
r
,
rp
,
chk
)
if
chk
==
0
then
return
eg
:
IsExists
(
c21133
.
rmfilter
,
1
,
nil
,
1
-
tp
)
end
local
g
=
eg
:
Filter
(
c21133
.
rmfilter
,
nil
,
1
-
tp
)
local
g
=
eg
:
Filter
(
c21133
.
rmfilter
,
nil
,
tp
)
Duel
.
SetTargetCard
(
g
)
Duel
.
SetOperationInfo
(
0
,
CATEGORY_REMOVE
,
g
,
g
:
GetCount
(),
0
,
0
)
end
function
c21133
.
rmop
(
e
,
tp
,
eg
,
ep
,
ev
,
re
,
r
,
rp
)
local
g
=
Duel
.
GetChainInfo
(
0
,
CHAININFO_TARGET_CARDS
):
Filter
(
Card
.
IsRelateToEffect
,
nil
,
e
)
if
Duel
.
Remove
(
g
,
POS_FACEDOWN
,
REASON_EFFECT
+
REASON_TEMPORARY
)
~=
0
then
local
tc
=
g
:
GetFirst
()
while
tc
do
local
fid
=
e
:
GetHandler
():
GetFieldID
()
for
tc
in
aux
.
Next
(
g
)
do
tc
:
RegisterFlagEffect
(
21133
,
RESET_EVENT
+
RESETS_STANDARD
+
RESET_PHASE
+
PHASE_END
,
0
,
1
,
fid
)
end
g
:
KeepAlive
()
local
e1
=
Effect
.
CreateEffect
(
e
:
GetHandler
())
e1
:
SetType
(
EFFECT_TYPE_FIELD
+
EFFECT_TYPE_CONTINUOUS
)
e1
:
SetCode
(
EVENT_PHASE
+
PHASE_END
)
e1
:
SetRange
(
LOCATION_REMOVED
)
e1
:
SetCountLimit
(
1
)
e1
:
SetReset
(
RESET_EVENT
+
0x1fe0000
+
RESET_PHASE
+
PHASE_END
)
e1
:
SetLabel
(
fid
)
e1
:
SetLabelObject
(
g
)
e1
:
SetCondition
(
c21133
.
retcon
)
e1
:
SetOperation
(
c21133
.
retop
)
tc
:
RegisterEffect
(
e1
)
tc
=
g
:
GetNext
()
end
e1
:
SetReset
(
RESET_PHASE
+
PHASE_END
)
Duel
.
RegisterEffect
(
e1
,
tp
)
end
end
function
c21133
.
retfilter
(
c
,
fid
)
return
c
:
GetFlagEffect
(
21133
)
>
0
and
c
:
GetFlagEffectLabel
(
21133
)
==
fid
end
function
c21133
.
retcon
(
e
,
tp
,
eg
,
ep
,
ev
,
re
,
r
,
rp
)
return
e
:
GetLabelObject
():
IsExists
(
c21133
.
retfilter
,
1
,
nil
,
e
:
GetLabel
())
end
function
c21133
.
retop
(
e
,
tp
,
eg
,
ep
,
ev
,
re
,
r
,
rp
)
Duel
.
ReturnToField
(
e
:
GetHandler
())
e
:
Reset
()
local
g
=
e
:
GetLabelObject
():
Filter
(
c21133
.
retfilter
,
nil
,
e
:
GetLabel
())
for
tc
in
aux
.
Next
(
g
)
do
Duel
.
ReturnToField
(
tc
)
end
end
\ No newline at end of file
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