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
alstroemeria-silentlove
ygopro-222DIY-cards
Commits
ad730e38
Commit
ad730e38
authored
Oct 18, 2023
by
songtongtong
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
fixed
parent
1444dfb5
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
5 additions
and
10 deletions
+5
-10
expansions/script/c16172004.lua
expansions/script/c16172004.lua
+2
-3
expansions/script/c16172005.lua
expansions/script/c16172005.lua
+3
-7
No files found.
expansions/script/c16172004.lua
View file @
ad730e38
...
...
@@ -74,12 +74,12 @@ function cm.con1(e,tp)
Duel
.
DisableActionCheck
(
true
)
local
dc
=
Duel
.
CreateToken
(
tp
,
m
+
1
)
Duel
.
DisableActionCheck
(
false
)
return
Duel
.
GetTurnPlayer
()
==
tp
and
dc
:
GetActivateEffect
():
IsActivatable
(
tp
,
false
,
false
)
and
Duel
.
IsExistingMatchingCard
(
cm
.
rlfilter
,
tp
,
LOCATION_
ONFIELD
+
LOCATION_
HAND
,
0
,
1
,
c
,
tp
)
and
(
Duel
.
GetCurrentPhase
()
==
PHASE_MAIN1
or
Duel
.
GetCurrentPhase
()
==
PHASE_MAIN2
)
return
Duel
.
GetTurnPlayer
()
==
tp
and
dc
:
GetActivateEffect
():
IsActivatable
(
tp
,
false
,
false
)
and
Duel
.
IsExistingMatchingCard
(
cm
.
rlfilter
,
tp
,
LOCATION_HAND
,
0
,
1
,
c
,
tp
)
and
(
Duel
.
GetCurrentPhase
()
==
PHASE_MAIN1
or
Duel
.
GetCurrentPhase
()
==
PHASE_MAIN2
)
end
function
cm
.
opdo
(
e
,
tp
,
eg
,
ep
,
ev
,
re
,
r
,
rp
)
local
c
=
e
:
GetHandler
()
Duel
.
Hint
(
HINT_SELECTMSG
,
tp
,
HINTMSG_RELEASE
)
local
g
=
Duel
.
SelectMatchingCard
(
tp
,
cm
.
rlfilter
,
tp
,
LOCATION_
ONFIELD
+
LOCATION_
HAND
,
0
,
1
,
1
,
c
,
tp
)
local
g
=
Duel
.
SelectMatchingCard
(
tp
,
cm
.
rlfilter
,
tp
,
LOCATION_HAND
,
0
,
1
,
1
,
c
,
tp
)
Duel
.
Release
(
g
,
REASON_COST
)
local
sidecode
=
c
.
side_code
c
:
SetEntityCode
(
sidecode
)
...
...
@@ -116,7 +116,6 @@ function cm.sptg1(e,tp,eg,ep,ev,re,r,rp,chk)
end
function
cm
.
spop1
(
e
,
tp
,
eg
,
ep
,
ev
,
re
,
r
,
rp
)
local
dg
=
eg
:
Filter
(
cm
.
cfilter
,
nil
)
if
Duel
.
GetLocationCount
(
tp
,
LOCATION_MZONE
)
<=
0
then
return
end
local
atk
=
dg
:
GetSum
(
Card
.
GetAttack
)
if
Duel
.
Damage
(
tp
,
atk
,
REASON_EFFECT
)
>
0
then
Duel
.
BreakEffect
()
...
...
expansions/script/c16172005.lua
View file @
ad730e38
...
...
@@ -16,7 +16,7 @@ function cm.initial_effect(c)
c
:
RegisterEffect
(
e0
)
--
local
e1
=
Effect
.
CreateEffect
(
c
)
e1
:
SetCategory
(
CATEGORY_
REMOVE
+
CATEGORY_
SEARCH
+
CATEGORY_TOHAND
)
e1
:
SetCategory
(
CATEGORY_SEARCH
+
CATEGORY_TOHAND
)
e1
:
SetType
(
EFFECT_TYPE_ACTIVATE
)
e1
:
SetCode
(
EVENT_FREE_CHAIN
)
e1
:
SetTarget
(
cm
.
target
)
...
...
@@ -70,18 +70,14 @@ function cm.doit(e,tp)
e
:
Reset
()
end
function
cm
.
target
(
e
,
tp
,
eg
,
ep
,
ev
,
re
,
r
,
rp
,
chk
)
local
rg
=
Duel
.
GetDecktopGroup
(
tp
,
5
)
if
chk
==
0
then
return
rg
:
GetCount
()
==
5
and
rg
:
FilterCount
(
Card
.
IsAbleToRemove
,
nil
,
POS_FACEDOWN
,
REASON_EFFECT
)
==
5
end
Duel
.
SetOperationInfo
(
0
,
CATEGORY_REMOVE
,
rg
,
5
,
tp
,
LOCATION_DECK
)
if
chk
==
0
then
return
true
end
Duel
.
SetOperationInfo
(
0
,
CATEGORY_TOHAND
,
nil
,
1
,
tp
,
LOCATION_DECK
)
end
function
cm
.
thcheck
(
c
)
return
aux
.
IsCodeListed
(
c
,
16172004
)
and
c
:
IsAbleToHand
()
end
function
cm
.
activate
(
e
,
tp
)
local
rg
=
Duel
.
GetDecktopGroup
(
tp
,
5
)
if
rg
:
GetCount
()
==
5
and
rg
:
FilterCount
(
Card
.
IsAbleToRemove
,
nil
,
POS_FACEDOWN
,
REASON_EFFECT
)
==
5
then
if
Duel
.
Remove
(
rg
,
POS_FACEDOWN
,
REASON_EFFECT
)
==
5
and
Duel
.
IsExistingMatchingCard
(
cm
.
thcheck
,
tp
,
LOCATION_DECK
,
0
,
1
,
nil
)
and
Duel
.
SelectYesNo
(
tp
,
aux
.
Stringid
(
m
,
0
))
then
if
Duel
.
IsExistingMatchingCard
(
cm
.
thcheck
,
tp
,
LOCATION_DECK
,
0
,
1
,
nil
)
and
Duel
.
SelectYesNo
(
tp
,
aux
.
Stringid
(
m
,
0
))
then
Duel
.
Hint
(
HINT_SELECTMSG
,
tp
,
HINTMSG_ATOHAND
)
local
tg
=
Duel
.
SelectMatchingCard
(
tp
,
cm
.
thcheck
,
tp
,
LOCATION_DECK
,
0
,
1
,
1
,
nil
)
Duel
.
SendtoHand
(
tg
,
tp
,
REASON_EFFECT
)
...
...
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