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
2e9329a9
Commit
2e9329a9
authored
Jun 25, 2025
by
Huangnan
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
fix
parent
25f9367a
Pipeline
#38080
passed with stages
in 36 minutes and 44 seconds
Changes
4
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
6 additions
and
6 deletions
+6
-6
expansions/script/c60001515.lua
expansions/script/c60001515.lua
+3
-3
expansions/script/c60001517.lua
expansions/script/c60001517.lua
+1
-1
expansions/script/c60001520.lua
expansions/script/c60001520.lua
+1
-1
expansions/script/c60001521.lua
expansions/script/c60001521.lua
+1
-1
No files found.
expansions/script/c60001515.lua
View file @
2e9329a9
...
...
@@ -43,7 +43,7 @@ function cm.initial_effect(c)
c
:
RegisterEffect
(
e3
)
--spsummon
local
e1
=
Effect
.
CreateEffect
(
c
)
e
3
:
SetDescription
(
aux
.
Stringid
(
m
,
2
))
e
1
:
SetDescription
(
aux
.
Stringid
(
m
,
2
))
e1
:
SetCategory
(
CATEGORY_SPECIAL_SUMMON
)
e1
:
SetType
(
EFFECT_TYPE_QUICK_O
)
e1
:
SetCode
(
EVENT_FREE_CHAIN
)
...
...
@@ -51,7 +51,7 @@ function cm.initial_effect(c)
e1
:
SetProperty
(
EFFECT_FLAG_DAMAGE_STEP
+
EFFECT_FLAG_DAMAGE_CAL
+
EFFECT_FLAG_NO_TURN_RESET
)
e1
:
SetCountLimit
(
1
)
e1
:
SetCondition
(
cm
.
incon
)
e1
:
SetTarget
(
cm
.
sptg
)
--
e1:SetTarget(cm.sptg)
e1
:
SetOperation
(
cm
.
spop
)
c
:
RegisterEffect
(
e1
)
end
...
...
@@ -93,7 +93,7 @@ function cm.eop(e,tp,eg,ep,ev,re,r,rp)
end
end
function
cm
.
spfil
(
c
,
e
,
tp
)
return
c
:
IsCode
(
60001506
)
and
c
:
IsFacedown
()
and
c
:
IsCanBeSpecialSummoned
(
e
,
0
,
tp
,
true
,
true
)
return
c
:
IsCode
(
60001506
)
and
c
:
IsFacedown
()
--
and c:IsCanBeSpecialSummoned(e,0,tp,true,true)
end
function
cm
.
sptg
(
e
,
tp
,
eg
,
ep
,
ev
,
re
,
r
,
rp
,
chk
)
if
chk
==
0
then
return
Duel
.
GetLocationCount
(
tp
,
LOCATION_MZONE
)
>
0
...
...
expansions/script/c60001517.lua
View file @
2e9329a9
...
...
@@ -21,7 +21,7 @@ function cm.cfil(c)
return
c
:
IsFaceup
()
and
c
:
IsCanAddCounter
(
0x624
,
1
)
and
c
:
IsType
(
TYPE_MONSTER
)
end
function
cm
.
mfil
(
c
)
return
c
:
IsFaceup
()
and
c
:
IsSetCard
(
0x
5622
)
and
c
:
IsLevelAbove
(
5
)
return
c
:
IsFaceup
()
and
c
:
IsSetCard
(
0x
3310
)
and
c
:
IsLevelAbove
(
5
)
end
function
cm
.
activate
(
e
,
tp
,
eg
,
ep
,
ev
,
re
,
r
,
rp
)
Duel
.
Hint
(
HINT_SELECTMSG
,
tp
,
HINTMSG_ATOHAND
)
...
...
expansions/script/c60001520.lua
View file @
2e9329a9
...
...
@@ -18,7 +18,7 @@ function cm.cost(e,tp,eg,ep,ev,re,r,rp,chk)
Duel
.
Hint
(
HINT_SELECTMSG
,
tp
,
HINTMSG_DESTROY
)
local
g
=
Duel
.
SelectMatchingCard
(
tp
,
Card
.
IsDiscardable
,
tp
,
LOCATION_HAND
,
0
,
1
,
1
,
e
:
GetHandler
())
Duel
.
SendtoGrave
(
g
,
REASON_COST
+
REASON_DISCARD
)
if
Duel
.
GetOperatedGroup
():
GetFirst
():
IsSetCard
(
0x
5622
)
then
e
:
SetLabel
(
99
)
end
if
Duel
.
GetOperatedGroup
():
GetFirst
():
IsSetCard
(
0x
3310
)
then
e
:
SetLabel
(
99
)
end
end
function
cm
.
target
(
e
,
tp
,
eg
,
ep
,
ev
,
re
,
r
,
rp
,
chk
,
chkc
)
if
chkc
then
return
chkc
:
IsOnField
()
and
chkc
~=
e
:
GetHandler
()
end
...
...
expansions/script/c60001521.lua
View file @
2e9329a9
...
...
@@ -36,7 +36,7 @@ function cm.incon(e)
return
Card
.
GetCounter
(
e
:
GetHandler
(),
0x624
)
>=
1
end
function
cm
.
spfil
(
c
,
e
,
tp
)
return
c
:
IsCode
(
60001507
)
and
c
:
IsFacedown
()
and
c
:
IsCanBeSpecialSummoned
(
e
,
0
,
tp
,
true
,
true
)
return
c
:
IsCode
(
60001507
)
and
c
:
IsFacedown
()
--
and c:IsCanBeSpecialSummoned(e,0,tp,true,true)
end
function
cm
.
tg
(
e
,
tp
,
eg
,
ep
,
ev
,
re
,
r
,
rp
,
chk
)
if
chk
==
0
then
return
Duel
.
GetLocationCount
(
tp
,
LOCATION_MZONE
)
>
0
...
...
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