Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Sign in / Register
Toggle navigation
Y
ygopro-222DIY-cards
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
REIKAI
ygopro-222DIY-cards
Commits
ea33d6f9
You need to sign in or sign up before continuing.
Commit
ea33d6f9
authored
Mar 09, 2022
by
Tachibana
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
ybb
parent
dd11c715
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
29 additions
and
23 deletions
+29
-23
expansions/script/c15000810.lua
expansions/script/c15000810.lua
+29
-23
No files found.
expansions/script/c15000810.lua
View file @
ea33d6f9
...
@@ -11,11 +11,10 @@ function cm.initial_effect(c)
...
@@ -11,11 +11,10 @@ function cm.initial_effect(c)
c
:
RegisterEffect
(
e0
)
c
:
RegisterEffect
(
e0
)
--change effect
--change effect
local
e1
=
Effect
.
CreateEffect
(
c
)
local
e1
=
Effect
.
CreateEffect
(
c
)
e1
:
SetType
(
EFFECT_TYPE_FIELD
+
EFFECT_TYPE_CONTINUOUS
)
e1
:
SetType
(
EFFECT_TYPE_SINGLE
)
e1
:
SetCode
(
EVENT_CHAIN_SOLVING
)
e1
:
SetProperty
(
EFFECT_FLAG_SINGLE_RANGE
)
e1
:
SetCode
(
15000810
)
e1
:
SetRange
(
LOCATION_FZONE
)
e1
:
SetRange
(
LOCATION_FZONE
)
e1
:
SetCondition
(
cm
.
chcon
)
e1
:
SetOperation
(
cm
.
chop
)
c
:
RegisterEffect
(
e1
)
c
:
RegisterEffect
(
e1
)
--Add Counter
--Add Counter
local
e3
=
Effect
.
CreateEffect
(
c
)
local
e3
=
Effect
.
CreateEffect
(
c
)
...
@@ -45,6 +44,15 @@ function cm.initial_effect(c)
...
@@ -45,6 +44,15 @@ function cm.initial_effect(c)
e6
:
SetTarget
(
cm
.
sptg
)
e6
:
SetTarget
(
cm
.
sptg
)
e6
:
SetOperation
(
cm
.
spop
)
e6
:
SetOperation
(
cm
.
spop
)
c
:
RegisterEffect
(
e6
)
c
:
RegisterEffect
(
e6
)
if
not
cm
.
global_effect
then
cm
.
global_effect
=
true
local
ge1
=
Effect
.
CreateEffect
(
c
)
ge1
:
SetType
(
EFFECT_TYPE_FIELD
+
EFFECT_TYPE_CONTINUOUS
)
ge1
:
SetCode
(
EVENT_CHAIN_SOLVING
)
ge1
:
SetCondition
(
cm
.
chcon
)
ge1
:
SetOperation
(
cm
.
chop
)
Duel
.
RegisterEffect
(
ge1
,
0
)
end
end
end
function
cm
.
counterfilter
(
c
)
function
cm
.
counterfilter
(
c
)
return
c
:
IsLocation
(
LOCATION_ONFIELD
)
and
c
:
IsPreviousLocation
(
LOCATION_ONFIELD
)
return
c
:
IsLocation
(
LOCATION_ONFIELD
)
and
c
:
IsPreviousLocation
(
LOCATION_ONFIELD
)
...
@@ -81,42 +89,40 @@ function cm.chcon(e,tp,eg,ep,ev,re,r,rp)
...
@@ -81,42 +89,40 @@ function cm.chcon(e,tp,eg,ep,ev,re,r,rp)
return
rc
:
IsType
(
TYPE_PENDULUM
)
and
rc
:
IsAttribute
(
ATTRIBUTE_WIND
)
and
re
:
GetOperation
()
and
re
:
IsActivated
()
return
rc
:
IsType
(
TYPE_PENDULUM
)
and
rc
:
IsAttribute
(
ATTRIBUTE_WIND
)
and
re
:
GetOperation
()
and
re
:
IsActivated
()
end
end
function
cm
.
chop
(
e
,
tp
,
eg
,
ep
,
ev
,
re
,
r
,
rp
)
function
cm
.
chop
(
e
,
tp
,
eg
,
ep
,
ev
,
re
,
r
,
rp
)
local
c
=
e
:
Get
Handl
er
()
local
c
=
e
:
Get
Own
er
()
local
op
=
re
:
GetOperation
()
local
op
=
re
:
GetOperation
()
local
e1
=
Effect
.
CreateEffect
(
c
)
local
e1
=
Effect
.
CreateEffect
(
c
)
e1
:
SetType
(
EFFECT_TYPE_
SINGLE
)
e1
:
SetType
(
EFFECT_TYPE_
FIELD
)
e1
:
SetProperty
(
EFFECT_FLAG_
SINGLE_RANG
E
)
e1
:
SetProperty
(
EFFECT_FLAG_
PLAYER_TARGET
+
EFFECT_FLAG_CANNOT_DISABL
E
)
e1
:
SetCode
(
15000810
)
e1
:
SetCode
(
15000810
)
e1
:
Set
Range
(
LOCATION_FZONE
)
e1
:
Set
TargetRange
(
1
,
0
)
e1
:
SetOperation
(
op
)
e1
:
SetOperation
(
op
)
e1
:
SetLabelObject
(
re
)
e1
:
SetLabelObject
(
re
)
e1
:
SetReset
(
RESET_
CHAIN
+
RESET_
PHASE
+
PHASE_END
)
e1
:
SetReset
(
RESET_PHASE
+
PHASE_END
)
c
:
RegisterEffect
(
e1
)
Duel
.
RegisterEffect
(
e1
,
0
)
Duel
.
ChangeChainOperation
(
ev
,
cm
.
repop
)
Duel
.
ChangeChainOperation
(
ev
,
cm
.
repop
)
end
end
function
cm
.
selfilter
(
c
)
function
cm
.
selfilter
(
c
)
return
c
:
IsCode
(
15000810
)
and
c
:
GetEffectCount
(
15000810
)
~=
0
return
c
:
GetEffectCount
(
15000810
)
~=
0
and
not
c
:
IsDisabled
()
end
end
function
cm
.
repop
(
e
,
tp
,
eg
,
ep
,
ev
,
re
,
r
,
rp
)
function
cm
.
repop
(
e
,
tp
,
eg
,
ep
,
ev
,
re
,
r
,
rp
)
local
c
=
e
:
GetHandler
()
local
c
=
e
:
GetHandler
()
local
g
=
Duel
.
GetMatchingGroup
(
cm
.
selfilter
,
tp
,
LOCATION_FZONE
,
LOCATION_FZONE
,
nil
)
local
se
=
Duel
.
IsPlayerAffectedByEffect
(
0
,
15000810
)
if
not
se
then
se
=
Duel
.
IsPlayerAffectedByEffect
(
1
,
15000810
)
end
local
op
=
nil
local
op
=
nil
local
tc
=
g
:
GetFirst
()
if
se
then
while
tc
do
local
ae
=
tc
:
IsHasEffect
(
15000810
)
local
x
=
1
local
x
=
1
if
tc
:
IsHasEffect
(
15000810
)
then
for
_
,
i
in
ipairs
{
Duel
.
IsPlayerAffectedByEffect
(
0
,
15000810
)}
do
for
_
,
i
in
ipairs
{
tc
:
IsHasEffect
(
15000810
)}
do
if
i
:
GetLabelObject
()
==
e
and
x
~=
0
then
if
i
:
GetLabelObject
()
==
e
and
x
~=
0
then
op
=
i
:
GetOperation
()
op
=
i
:
GetOperation
()
i
:
Reset
()
i
:
Reset
()
x
=
0
x
=
0
end
end
end
end
end
tc
=
g
:
GetNext
()
end
end
if
op
then
op
(
e
,
tp
,
eg
,
ep
,
ev
,
re
,
r
,
rp
)
end
if
op
then
op
(
e
,
tp
,
eg
,
ep
,
ev
,
re
,
r
,
rp
)
end
local
ag
=
Duel
.
GetMatchingGroup
(
cm
.
selfilter
,
tp
,
LOCATION_FZONE
,
LOCATION_FZONE
,
nil
)
if
ag
:
GetCount
()
==
0
then
return
end
local
seq
=
c
:
GetSequence
()
local
seq
=
c
:
GetSequence
()
if
c
:
IsLocation
(
LOCATION_MZONE
)
and
c
:
IsFaceup
()
and
seq
<=
4
and
((
seq
>
0
and
Duel
.
CheckLocation
(
tp
,
LOCATION_MZONE
,
seq
-
1
))
or
(
seq
<
4
and
Duel
.
CheckLocation
(
tp
,
LOCATION_MZONE
,
seq
+
1
)))
and
Duel
.
SelectYesNo
(
tp
,
aux
.
Stringid
(
15000810
,
0
))
then
if
c
:
IsLocation
(
LOCATION_MZONE
)
and
c
:
IsFaceup
()
and
seq
<=
4
and
((
seq
>
0
and
Duel
.
CheckLocation
(
tp
,
LOCATION_MZONE
,
seq
-
1
))
or
(
seq
<
4
and
Duel
.
CheckLocation
(
tp
,
LOCATION_MZONE
,
seq
+
1
)))
and
Duel
.
SelectYesNo
(
tp
,
aux
.
Stringid
(
15000810
,
0
))
then
Duel
.
BreakEffect
()
Duel
.
BreakEffect
()
...
...
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