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
c43bfa9f
Commit
c43bfa9f
authored
Oct 29, 2025
by
Huangnan
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
fix
parent
aa830a1b
Pipeline
#41324
failed with stages
in 1 minute and 19 seconds
Changes
5
Pipelines
1
Show whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
15 additions
and
3 deletions
+15
-3
expansions/script/c18701025.lua
expansions/script/c18701025.lua
+4
-0
expansions/script/c61200011.lua
expansions/script/c61200011.lua
+1
-1
expansions/script/c61200309.lua
expansions/script/c61200309.lua
+3
-0
expansions/script/c61200401.lua
expansions/script/c61200401.lua
+3
-2
expansions/script/c82000742.lua
expansions/script/c82000742.lua
+4
-0
No files found.
expansions/script/c18701025.lua
View file @
c43bfa9f
...
@@ -9,6 +9,7 @@ function cm.initial_effect(c)
...
@@ -9,6 +9,7 @@ function cm.initial_effect(c)
e1
:
SetCode
(
EVENT_FREE_CHAIN
)
e1
:
SetCode
(
EVENT_FREE_CHAIN
)
e1
:
SetRange
(
LOCATION_HAND
+
LOCATION_MZONE
)
e1
:
SetRange
(
LOCATION_HAND
+
LOCATION_MZONE
)
e1
:
SetCountLimit
(
1
)
e1
:
SetCountLimit
(
1
)
e1
:
SetCondition
(
cm
.
obcon
)
e1
:
SetTarget
(
cm
.
hsptg
)
e1
:
SetTarget
(
cm
.
hsptg
)
e1
:
SetOperation
(
cm
.
hspop
)
e1
:
SetOperation
(
cm
.
hspop
)
c
:
RegisterEffect
(
e1
)
c
:
RegisterEffect
(
e1
)
...
@@ -118,6 +119,9 @@ end
...
@@ -118,6 +119,9 @@ end
function
cm
.
obcon
(
e
,
tp
,
eg
,
ep
,
ev
,
re
,
r
,
rp
)
return
Duel
.
GetCurrentPhase
()
==
PHASE_MAIN1
or
Duel
.
GetCurrentPhase
()
==
PHASE_MAIN2
end
function
cm
.
hspfilter1
(
c
,
e
)
function
cm
.
hspfilter1
(
c
,
e
)
return
not
c
:
IsImmuneToEffect
(
e
)
return
not
c
:
IsImmuneToEffect
(
e
)
end
end
...
...
expansions/script/c61200011.lua
View file @
c43bfa9f
...
@@ -79,7 +79,7 @@ function s.op1(e,tp,eg,ep,ev,re,r,rp)
...
@@ -79,7 +79,7 @@ function s.op1(e,tp,eg,ep,ev,re,r,rp)
if
g
:
GetCount
()
>
0
then
if
g
:
GetCount
()
>
0
then
Duel
.
Hint
(
HINT_SELECTMSG
,
tp
,
HINTMSG_SPSUMMON
)
Duel
.
Hint
(
HINT_SELECTMSG
,
tp
,
HINTMSG_SPSUMMON
)
local
ag
=
g
:
Select
(
tp
,
1
,
1
,
nil
)
local
ag
=
g
:
Select
(
tp
,
1
,
1
,
nil
)
Duel
.
SpecialSummon
(
ag
,
nil
,
tp
,
tp
,
false
,
false
,
0
)
Duel
.
SpecialSummon
(
ag
,
nil
,
tp
,
tp
,
false
,
false
,
POS_FACEUP
)
end
end
end
end
...
...
expansions/script/c61200309.lua
View file @
c43bfa9f
...
@@ -22,6 +22,7 @@ function c61200309.initial_effect(c)
...
@@ -22,6 +22,7 @@ function c61200309.initial_effect(c)
e2
:
SetTarget
(
s
.
tg2
)
e2
:
SetTarget
(
s
.
tg2
)
e2
:
SetOperation
(
s
.
op2
)
e2
:
SetOperation
(
s
.
op2
)
c
:
RegisterEffect
(
e2
)
c
:
RegisterEffect
(
e2
)
end
end
function
s
.
f1
(
c
)
function
s
.
f1
(
c
)
...
@@ -88,6 +89,8 @@ function s.op1(e,tp,eg,ep,ev,re,r,rp)
...
@@ -88,6 +89,8 @@ function s.op1(e,tp,eg,ep,ev,re,r,rp)
e1
:
SetCode
(
EFFECT_UPDATE_ATTACK
)
e1
:
SetCode
(
EFFECT_UPDATE_ATTACK
)
e1
:
SetValue
(
-
tc
:
GetAttack
())
e1
:
SetValue
(
-
tc
:
GetAttack
())
c
:
RegisterEffect
(
e1
)
c
:
RegisterEffect
(
e1
)
Duel
.
Remove
(
tc
,
POS_FACEUP
,
REASON_EFFECT
)
tc
=
g2
:
GetNext
()
else
else
Duel
.
Remove
(
c
,
POS_FACEDOWN
,
REASON_EFFECT
)
Duel
.
Remove
(
c
,
POS_FACEDOWN
,
REASON_EFFECT
)
end
end
...
...
expansions/script/c61200401.lua
View file @
c43bfa9f
...
@@ -5,7 +5,7 @@ function c61200401.initial_effect(c)
...
@@ -5,7 +5,7 @@ function c61200401.initial_effect(c)
c
:
EnableReviveLimit
()
c
:
EnableReviveLimit
()
local
tp
=
c
:
GetControler
()
local
tp
=
c
:
GetControler
()
--融合素材
--融合素材
aux
.
AddFusionProc
MixRep
(
c
,
false
,
false
,
s
.
f1
,
1
,
63
,
61200101
,
tp
)
aux
.
AddFusionProc
CodeFunRep
(
c
,
61200101
,
aux
.
FilterBoolFunction
(
s
.
f1
,
c
),
1
,
99
,
false
,
true
)
--召唤限制
--召唤限制
local
e1
=
Effect
.
CreateEffect
(
c
)
local
e1
=
Effect
.
CreateEffect
(
c
)
e1
:
SetType
(
EFFECT_TYPE_SINGLE
)
e1
:
SetType
(
EFFECT_TYPE_SINGLE
)
...
@@ -46,7 +46,8 @@ function c61200401.initial_effect(c)
...
@@ -46,7 +46,8 @@ function c61200401.initial_effect(c)
c
:
RegisterEffect
(
e4
)
c
:
RegisterEffect
(
e4
)
end
end
function
s
.
f1
(
c
,
tp
)
function
s
.
f1
(
c
,
mc
)
local
tp
=
mc
:
GetOwner
()
return
c
:
IsFusionType
(
TYPE_MONSTER
)
and
(
c
:
GetControler
()
==
tp
or
c
:
GetOwner
()
==
tp
)
and
c
:
IsFaceup
()
return
c
:
IsFusionType
(
TYPE_MONSTER
)
and
(
c
:
GetControler
()
==
tp
or
c
:
GetOwner
()
==
tp
)
and
c
:
IsFaceup
()
end
end
...
...
expansions/script/c82000742.lua
View file @
c43bfa9f
...
@@ -33,10 +33,14 @@ function c82000742.initial_effect(c)
...
@@ -33,10 +33,14 @@ function c82000742.initial_effect(c)
e3
:
SetRange
(
LOCATION_MZONE
)
e3
:
SetRange
(
LOCATION_MZONE
)
e3
:
SetCountLimit
(
1
,
82000743
)
e3
:
SetCountLimit
(
1
,
82000743
)
e3
:
SetHintTiming
(
0
,
TIMINGS_CHECK_MONSTER
+
TIMING_MAIN_END
)
e3
:
SetHintTiming
(
0
,
TIMINGS_CHECK_MONSTER
+
TIMING_MAIN_END
)
e3
:
SetCondition
(
c82000742
.
spycon
)
e3
:
SetTarget
(
c82000742
.
spytg
)
e3
:
SetTarget
(
c82000742
.
spytg
)
e3
:
SetOperation
(
c82000742
.
spyop
)
e3
:
SetOperation
(
c82000742
.
spyop
)
c
:
RegisterEffect
(
e3
)
c
:
RegisterEffect
(
e3
)
end
end
function
c82000742
.
spycon
(
e
,
tp
,
eg
,
ep
,
ev
,
re
,
r
,
rp
)
return
Duel
.
GetCurrentPhase
()
==
PHASE_MAIN1
or
Duel
.
GetCurrentPhase
()
==
PHASE_MAIN2
end
function
c82000742
.
spytg
(
e
,
tp
,
eg
,
ep
,
ev
,
re
,
r
,
rp
,
chk
)
function
c82000742
.
spytg
(
e
,
tp
,
eg
,
ep
,
ev
,
re
,
r
,
rp
,
chk
)
if
chk
==
0
then
if
chk
==
0
then
local
ct
=
Duel
.
GetFieldGroupCount
(
tp
,
LOCATION_ONFIELD
,
0
)
local
ct
=
Duel
.
GetFieldGroupCount
(
tp
,
LOCATION_ONFIELD
,
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