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
d247a521
Commit
d247a521
authored
Aug 15, 2024
by
GuGu
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Update c200203.lua
parent
66a3c1dd
Pipeline
#29230
passed with stage
in 10 seconds
Changes
1
Pipelines
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
31 deletions
+4
-31
script/c200203.lua
script/c200203.lua
+4
-31
No files found.
script/c200203.lua
View file @
d247a521
...
...
@@ -19,37 +19,10 @@ function c200203.operation(e,tp,eg,ep,ev,re,r,rp)
local
g
=
Duel
.
SelectMatchingCard
(
tp
,
aux
.
TRUE
,
tp
,
0
,
LOCATION_ONFIELD
,
1
,
1
,
nil
)
local
tc
=
g
:
GetFirst
()
Duel
.
HintSelection
(
g
)
local
pos
=
0
if
tc
:
IsFacedown
()
then
pos
=
1
end
--forbidden
local
e1
=
Effect
.
CreateEffect
(
e
:
GetHandler
())
e1
:
SetType
(
EFFECT_TYPE_
FIELD
)
e1
:
SetProperty
(
EFFECT_FLAG_SET_AVAILABLE
+
EFFECT_FLAG_IGNORE_RANGE
)
e1
:
SetType
(
EFFECT_TYPE_
SINGLE
)
e1
:
SetProperty
(
EFFECT_FLAG_SET_AVAILABLE
)
e1
:
SetCode
(
EFFECT_FORBIDDEN
)
e1
:
SetCondition
(
c200203
.
bancon
)
e1
:
SetTarget
(
c200203
.
bantg
)
e1
:
SetLabel
(
pos
)
e1
:
SetLabelObject
(
tc
)
e1
:
SetReset
(
RESET_PHASE
+
PHASE_END
+
RESET_OPPO_TURN
)
Duel
.
RegisterEffect
(
e1
,
tp
)
end
function
c200203
.
banfilter1
(
c
,
e
)
return
c
==
e
:
GetLabelObject
()
and
c
:
IsFaceup
()
and
c
:
IsOnField
()
end
function
c200203
.
banfilter2
(
c
,
e
)
return
c
==
e
:
GetLabelObject
()
and
c
:
IsFacedown
()
and
c
:
IsOnField
()
end
function
c200203
.
bancon
(
e
)
local
tp
=
e
:
GetHandlerPlayer
()
local
tc
=
e
:
GetLabelObject
()
local
pos
=
e
:
GetLabel
()
if
pos
==
1
and
Duel
.
IsExistingMatchingCard
(
c200203
.
banfilter2
,
tp
,
LOCATION_ONFIELD
,
LOCATION_ONFIELD
,
1
,
nil
,
e
)
then
return
true
else
e
:
SetLabel
(
0
)
end
if
Duel
.
IsExistingMatchingCard
(
c200203
.
banfilter1
,
tp
,
LOCATION_ONFIELD
,
LOCATION_ONFIELD
,
1
,
nil
,
e
)
then
return
true
end
e
:
Reset
()
return
false
end
function
c200203
.
bantg
(
e
,
c
)
return
c
==
e
:
GetLabelObject
()
e1
:
SetReset
(
RESET_EVENT
+
RESETS_STANDARD
+
RESET_PHASE
+
PHASE_END
)
tc
:
RegisterEffect
(
e1
,
true
)
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