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
Soulgamer
ygopro-222DIY-cards
Commits
b5cb7e48
Commit
b5cb7e48
authored
Nov 22, 2020
by
Grajade
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Update expansions/script/c1150021.lua
parent
4e3a7af8
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
56 additions
and
72 deletions
+56
-72
expansions/script/c1150021.lua
expansions/script/c1150021.lua
+56
-72
No files found.
expansions/script/c1150021.lua
View file @
b5cb7e48
--玫瑰香水
function
c1150021
.
initial_effect
(
c
)
--
local
e1
=
Effect
.
CreateEffect
(
c
)
e1
:
SetCategory
(
CATEGORY_CONTROL
)
e1
:
SetType
(
EFFECT_TYPE_ACTIVATE
)
e1
:
SetProperty
(
EFFECT_FLAG_CARD_TARGET
)
e1
:
SetCode
(
EVENT_FREE_CHAIN
)
e1
:
SetCountLimit
(
1
,
1150021
+
EFFECT_COUNT_CODE_OATH
)
e1
:
SetTarget
(
c1150021
.
tg1
)
e1
:
SetOperation
(
c1150021
.
op1
)
c
:
RegisterEffect
(
e1
)
local
e1
=
Effect
.
CreateEffect
(
c
)
e1
:
SetCategory
(
CATEGORY_CONTROL
)
e1
:
SetType
(
EFFECT_TYPE_ACTIVATE
)
e1
:
SetProperty
(
EFFECT_FLAG_CARD_TARGET
)
e1
:
SetCode
(
EVENT_FREE_CHAIN
)
e1
:
SetCountLimit
(
1
,
1150021
+
EFFECT_COUNT_CODE_OATH
)
e1
:
SetTarget
(
c1150021
.
tg1
)
e1
:
SetOperation
(
c1150021
.
op1
)
c
:
RegisterEffect
(
e1
)
--
end
--
function
c1150021
.
tfilter1
(
c
)
return
c
:
IsFaceup
()
end
function
c1150021
.
tg1
(
e
,
tp
,
eg
,
ep
,
ev
,
re
,
r
,
rp
,
chk
,
chkc
)
if
chkc
then
return
chkc
:
IsLocation
(
LOCATION_MZONE
)
and
c1150021
.
tfilter1
(
chkc
)
end
if
chk
==
0
then
return
Duel
.
IsExistingTarget
(
c1150021
.
tfilter1
,
tp
,
LOCATION_MZONE
,
0
,
1
,
nil
)
end
Duel
.
Hint
(
HINT_SELECTMSG
,
tp
,
HINTMSG_FACEUP
)
local
g
=
Duel
.
SelectTarget
(
tp
,
c1150021
.
tfilter1
,
tp
,
LOCATION_MZONE
,
0
,
1
,
1
,
nil
)
if
chkc
then
return
chkc
:
IsLocation
(
LOCATION_MZONE
)
and
chkc
:
IsFaceup
(
)
end
if
chk
==
0
then
return
Duel
.
IsExistingTarget
(
Card
.
IsFaceup
,
tp
,
LOCATION_MZONE
,
0
,
1
,
nil
)
end
Duel
.
Hint
(
HINT_SELECTMSG
,
tp
,
HINTMSG_FACEUP
)
Duel
.
SelectTarget
(
tp
,
Card
.
IsFaceup
,
tp
,
LOCATION_MZONE
,
0
,
1
,
1
,
nil
)
end
--
function
c1150021
.
ofilter1
(
c
,
e
,
tp
)
local
lv
=
e
:
GetLabel
()
return
c
:
IsFaceup
()
and
c
:
IsControlerCanBeChanged
()
and
((
c
:
IsType
(
TYPE_XYZ
)
and
c
:
GetRace
()
<
lv
)
or
(
not
c
:
IsType
(
TYPE_XYZ
)
and
c
:
GetLevel
()
<
lv
))
function
c1150021
.
ofilter1
(
c
,
e
,
tp
,
tc
)
local
num1
=
math.max
(
c
:
GetLevel
(),
c
:
GetRank
())
local
num2
=
math.max
(
tc
:
GetLevel
(),
tc
:
GetRank
())
return
num1
>
0
and
num2
>
0
and
num2
>=
num1
and
c
:
IsFaceup
()
and
c
:
IsControlerCanBeChanged
()
end
function
c1150021
.
op1
(
e
,
tp
,
eg
,
ep
,
ev
,
re
,
r
,
rp
)
local
tc
=
Duel
.
GetFirstTarget
()
if
tc
:
IsRelateToEffect
(
e
)
and
tc
:
IsFaceup
()
and
tc
:
IsLocation
(
LOCATION_MZONE
)
then
local
g
=
Duel
.
TossCoin
(
tp
,
1
)
local
lv
=
0
if
g
==
1
then
if
tc
:
IsType
(
TYPE_XYZ
)
then
lv
=
tc
:
GetRank
()
+
1
else
lv
=
tc
:
GetLevel
()
+
1
end
e
:
SetLabel
(
lv
)
if
Duel
.
IsExistingMatchingCard
(
c1150021
.
ofilter1
,
tp
,
0
,
LOCATION_MZONE
,
1
,
nil
,
e
,
tp
)
then
local
g1
=
Duel
.
SelectMatchingCard
(
tp
,
c1150021
.
ofilter1
,
tp
,
0
,
LOCATION_MZONE
,
1
,
1
,
nil
,
e
,
tp
)
if
g1
:
GetCount
()
>
0
then
Duel
.
GetControl
(
g1
,
tp
,
PHASE_END
,
1
)
end
end
end
if
g
==
0
then
local
e1_1
=
Effect
.
CreateEffect
(
e
:
GetHandler
())
e1_1
:
SetDescription
(
aux
.
Stringid
(
1150021
,
0
))
e1_1
:
SetProperty
(
EFFECT_FLAG_CLIENT_HINT
)
e1_1
:
SetType
(
EFFECT_TYPE_QUICK_O
)
e1_1
:
SetCode
(
EVENT_CHAINING
)
e1_1
:
SetRange
(
LOCATION_MZONE
)
e1_1
:
SetReset
(
RESET_EVENT
+
0x1fe0000
)
e1_1
:
SetCondition
(
c1150021
.
con1_1
)
e1_1
:
SetTarget
(
c1150021
.
tg1_1
)
e1_1
:
SetOperation
(
c1150021
.
op1_1
)
tc
:
RegisterEffect
(
e1_1
)
end
end
end
--
function
c1150021
.
con1_1
(
e
,
tp
,
eg
,
ep
,
ev
,
re
,
r
,
rp
)
return
not
(
re
:
GetHandler
():
IsType
(
TYPE_CONTINUOUS
+
TYPE_FIELD
+
TYPE_PENDULUM
)
and
re
:
IsHasType
(
EFFECT_TYPE_ACTIVATE
))
local
c
=
e
:
GetHandler
()
local
tc
=
Duel
.
GetFirstTarget
()
if
not
tc
:
IsFaceup
()
then
return
end
if
not
tc
:
IsRelateToEffect
(
e
)
then
return
end
if
not
tc
:
IsLocation
(
LOCATION_MZONE
)
then
return
end
local
ct
=
Duel
.
TossCoin
(
tp
,
1
)
if
ct
==
1
then
Duel
.
Hint
(
HINT_SELECTMSG
,
tp
,
HINTMSG_CONTROL
)
local
sg
=
Duel
.
SelectMatchingCard
(
tp
,
c1150021
.
ofilter1
,
tp
,
0
,
LOCATION_MZONE
,
1
,
1
,
nil
,
e
,
tp
,
tc
)
if
sg
:
GetCount
()
>
0
then
Duel
.
GetControl
(
sg
,
tp
,
PHASE_END
,
1
)
end
else
local
e1_1
=
Effect
.
CreateEffect
(
c
)
e1_1
:
SetDescription
(
aux
.
Stringid
(
1150021
,
0
))
e1_1
:
SetProperty
(
EFFECT_FLAG_CLIENT_HINT
)
e1_1
:
SetType
(
EFFECT_TYPE_QUICK_O
)
e1_1
:
SetCode
(
EVENT_CHAINING
)
e1_1
:
SetRange
(
LOCATION_MZONE
)
e1_1
:
SetCondition
(
c1150021
.
con1_1
)
e1_1
:
SetTarget
(
c1150021
.
tg1_1
)
e1_1
:
SetOperation
(
c1150021
.
op1_1
)
e1_1
:
SetReset
(
RESET_EVENT
+
0x1fe0000
)
tc
:
RegisterEffect
(
e1_1
)
end
end
--
function
c1150021
.
tfilter1_1
(
c
)
return
c
:
IsAbleToHand
()
end
function
c1150021
.
tg1_1
(
e
,
tp
,
eg
,
ep
,
ev
,
re
,
r
,
rp
,
chk
)
if
chk
==
0
then
return
Duel
.
IsExistingMatchingCard
(
c1150021
.
tfilter1_1
,
rp
,
0
,
LOCATION_ONFIELD
,
1
,
nil
)
and
not
e
:
GetHandler
():
IsStatus
(
STATUS_CHAINING
)
end
if
chk
==
0
then
return
Duel
.
IsExistingMatchingCard
(
Card
.
IsAbleToHand
,
rp
,
0
,
LOCATION_ONFIELD
,
1
,
nil
)
and
e
:
GetHandler
():
GetFlagEffect
(
1150021
)
<
1
end
e
:
GetHandler
():
RegisterFlagEffect
(
1150021
,
RESET_CHAIN
,
0
,
1
)
end
--
function
c1150021
.
op1_1
(
e
,
tp
,
eg
,
ep
,
ev
,
re
,
r
,
rp
)
local
g
=
Group
.
CreateGroup
()
Duel
.
ChangeTargetCard
(
ev
,
g
)
Duel
.
ChangeChainOperation
(
ev
,
c1150021
.
op1_1_1
)
local
s
g
=
Group
.
CreateGroup
()
Duel
.
ChangeTargetCard
(
ev
,
s
g
)
Duel
.
ChangeChainOperation
(
ev
,
c1150021
.
op1_1_1
)
end
--
function
c1150021
.
op1_1_1
(
e
,
tp
,
eg
,
ep
,
ev
,
re
,
r
,
rp
)
local
c
=
e
:
GetHandler
()
if
c
:
GetType
()
~=
TYPE_MONSTER
+
TYPE_CONTINUOUS
+
TYPE_FIELD
+
TYPE_PENDULUM
then
c
:
CancelToGrave
(
false
)
end
Duel
.
Hint
(
HINT_SELECTMSG
,
tp
,
HINTMSG_FACEUP
)
local
g
=
Duel
.
SelectMatchingCard
(
tp
,
c1150021
.
tfilter1_1
,
tp
,
0
,
LOCATION_ONFIELD
,
1
,
1
,
nil
)
if
g
:
GetCount
()
>
0
then
Duel
.
SendtoHand
(
g
,
nil
,
REASON_EFFECT
)
end
Duel
.
Hint
(
HINT_SELECTMSG
,
tp
,
HINTMSG_RTOHAND
)
local
sg
=
Duel
.
SelectMatchingCard
(
tp
,
c1150021
.
tfilter1_1
,
tp
,
0
,
LOCATION_ONFIELD
,
1
,
1
,
nil
)
if
sg
:
GetCount
()
>
0
then
Duel
.
HintSelection
(
sg
)
Duel
.
SendtoHand
(
sg
,
nil
,
REASON_EFFECT
)
end
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