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
075cdf5e
Commit
075cdf5e
authored
Jun 08, 2025
by
Satty
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
fix
parent
eb36cd54
Pipeline
#37325
failed with stages
in 3 seconds
Changes
7
Pipelines
1
Show whitespace changes
Inline
Side-by-side
Showing
7 changed files
with
70 additions
and
80 deletions
+70
-80
expansions/script/c16311000.lua
expansions/script/c16311000.lua
+3
-3
expansions/script/c16311075.lua
expansions/script/c16311075.lua
+3
-2
expansions/script/c71402000.lua
expansions/script/c71402000.lua
+1
-1
expansions/script/c71404000.lua
expansions/script/c71404000.lua
+6
-2
expansions/script/c71404014.lua
expansions/script/c71404014.lua
+49
-50
expansions/script/c9310007.lua
expansions/script/c9310007.lua
+4
-11
expansions/script/c9310020.lua
expansions/script/c9310020.lua
+4
-11
No files found.
expansions/script/c16311000.lua
View file @
075cdf5e
...
@@ -20,7 +20,7 @@ function c16311000.initial_effect(c)
...
@@ -20,7 +20,7 @@ function c16311000.initial_effect(c)
local
e4
=
Effect
.
CreateEffect
(
c
)
local
e4
=
Effect
.
CreateEffect
(
c
)
e4
:
SetType
(
EFFECT_TYPE_FIELD
)
e4
:
SetType
(
EFFECT_TYPE_FIELD
)
e4
:
SetCode
(
EFFECT_CANNOT_SELECT_BATTLE_TARGET
)
e4
:
SetCode
(
EFFECT_CANNOT_SELECT_BATTLE_TARGET
)
e4
:
SetRange
(
LOCATION_
F
ZONE
)
e4
:
SetRange
(
LOCATION_
S
ZONE
)
e4
:
SetTargetRange
(
0
,
LOCATION_MZONE
)
e4
:
SetTargetRange
(
0
,
LOCATION_MZONE
)
e4
:
SetValue
(
c16311000
.
atlimit
)
e4
:
SetValue
(
c16311000
.
atlimit
)
c
:
RegisterEffect
(
e4
)
c
:
RegisterEffect
(
e4
)
...
@@ -28,7 +28,7 @@ function c16311000.initial_effect(c)
...
@@ -28,7 +28,7 @@ function c16311000.initial_effect(c)
e5
:
SetType
(
EFFECT_TYPE_FIELD
)
e5
:
SetType
(
EFFECT_TYPE_FIELD
)
e5
:
SetCode
(
EFFECT_CANNOT_BE_EFFECT_TARGET
)
e5
:
SetCode
(
EFFECT_CANNOT_BE_EFFECT_TARGET
)
e5
:
SetProperty
(
EFFECT_FLAG_IGNORE_IMMUNE
)
e5
:
SetProperty
(
EFFECT_FLAG_IGNORE_IMMUNE
)
e5
:
SetRange
(
LOCATION_
F
ZONE
)
e5
:
SetRange
(
LOCATION_
S
ZONE
)
e5
:
SetTargetRange
(
LOCATION_MZONE
,
0
)
e5
:
SetTargetRange
(
LOCATION_MZONE
,
0
)
e5
:
SetTarget
(
c16311000
.
tglimit
)
e5
:
SetTarget
(
c16311000
.
tglimit
)
e5
:
SetValue
(
aux
.
tgoval
)
e5
:
SetValue
(
aux
.
tgoval
)
...
@@ -72,7 +72,7 @@ function c16311000.target(e,tp,eg,ep,ev,re,r,rp,chk)
...
@@ -72,7 +72,7 @@ function c16311000.target(e,tp,eg,ep,ev,re,r,rp,chk)
Duel
.
SetOperationInfo
(
0
,
CATEGORY_SPECIAL_SUMMON
,
nil
,
1
,
tp
,
0x11
)
Duel
.
SetOperationInfo
(
0
,
CATEGORY_SPECIAL_SUMMON
,
nil
,
1
,
tp
,
0x11
)
end
end
function
c16311000
.
activate
(
e
,
tp
,
eg
,
ep
,
ev
,
re
,
r
,
rp
)
function
c16311000
.
activate
(
e
,
tp
,
eg
,
ep
,
ev
,
re
,
r
,
rp
)
Duel
.
Hint
(
HINT_SELECTMSG
,
tp
,
HINTMSG_
ATOHAND
)
Duel
.
Hint
(
HINT_SELECTMSG
,
tp
,
HINTMSG_
SPSUMMON
)
local
g
=
Duel
.
SelectMatchingCard
(
tp
,
aux
.
NecroValleyFilter
(
c16311000
.
spfilter
),
tp
,
0x11
,
0
,
1
,
1
,
nil
,
e
,
tp
)
local
g
=
Duel
.
SelectMatchingCard
(
tp
,
aux
.
NecroValleyFilter
(
c16311000
.
spfilter
),
tp
,
0x11
,
0
,
1
,
1
,
nil
,
e
,
tp
)
if
g
:
GetCount
()
>
0
then
if
g
:
GetCount
()
>
0
then
Duel
.
SpecialSummon
(
g
,
0
,
tp
,
tp
,
false
,
false
,
POS_FACEUP_DEFENSE
)
Duel
.
SpecialSummon
(
g
,
0
,
tp
,
tp
,
false
,
false
,
POS_FACEUP_DEFENSE
)
...
...
expansions/script/c16311075.lua
View file @
075cdf5e
...
@@ -10,8 +10,9 @@ function c16311075.initial_effect(c)
...
@@ -10,8 +10,9 @@ function c16311075.initial_effect(c)
e1
:
SetType
(
EFFECT_TYPE_FIELD
)
e1
:
SetType
(
EFFECT_TYPE_FIELD
)
e1
:
SetCode
(
EFFECT_UPDATE_DEFENSE
)
e1
:
SetCode
(
EFFECT_UPDATE_DEFENSE
)
e1
:
SetRange
(
LOCATION_SZONE
)
e1
:
SetRange
(
LOCATION_SZONE
)
e1
:
SetTargetRange
(
0
,
LOCATION_MZONE
)
e1
:
SetTargetRange
(
LOCATION_MZONE
,
0
)
e1
:
SetValue
(
-
800
)
e1
:
SetTarget
(
aux
.
TargetBoolFunction
(
Card
.
IsRace
,
RACE_INSECT
))
e1
:
SetValue
(
800
)
c
:
RegisterEffect
(
e1
)
c
:
RegisterEffect
(
e1
)
--pos
--pos
local
e2
=
Effect
.
CreateEffect
(
c
)
local
e2
=
Effect
.
CreateEffect
(
c
)
...
...
expansions/script/c71402000.lua
View file @
075cdf5e
...
@@ -122,7 +122,7 @@ function c71402000.efop(e,tp,eg,ep,ev,re,r,rp)
...
@@ -122,7 +122,7 @@ function c71402000.efop(e,tp,eg,ep,ev,re,r,rp)
elseif
dc
==
3
then
elseif
dc
==
3
then
Duel
.
Hint
(
HINT_SELECTMSG
,
tp
,
HINTMSG_TOGRAVE
)
Duel
.
Hint
(
HINT_SELECTMSG
,
tp
,
HINTMSG_TOGRAVE
)
local
g
=
Duel
.
SelectMatchingCard
(
tp
,
c71402000
.
filter2
,
tp
,
LOCATION_DECK
,
0
,
1
,
1
,
nil
)
local
g
=
Duel
.
SelectMatchingCard
(
tp
,
c71402000
.
filter2
,
tp
,
LOCATION_DECK
,
0
,
1
,
1
,
nil
)
if
g
:
GetCount
()
>
0
then
Duel
.
SendtoGrave
(
g
,
REASON_EFFECT
)
>
0
end
if
g
:
GetCount
()
>
0
then
Duel
.
SendtoGrave
(
g
,
REASON_EFFECT
)
end
elseif
dc
==
4
then
elseif
dc
==
4
then
local
thg
=
Duel
.
GetMatchingGroup
(
c71402000
.
filter3
,
tp
,
LOCATION_GRAVE
,
0
,
nil
)
local
thg
=
Duel
.
GetMatchingGroup
(
c71402000
.
filter3
,
tp
,
LOCATION_GRAVE
,
0
,
nil
)
if
thg
:
GetCount
()
>
0
if
thg
:
GetCount
()
>
0
...
...
expansions/script/c71404000.lua
View file @
075cdf5e
...
@@ -721,6 +721,7 @@ function yume.stellar_memories.BanishorSendSpell(sid,tp,msg1,msg2)
...
@@ -721,6 +721,7 @@ function yume.stellar_memories.BanishorSendSpell(sid,tp,msg1,msg2)
Duel
.
Hint
(
HINT_SELECTMSG
,
tp
,
HINTMSG_TODECK
)
Duel
.
Hint
(
HINT_SELECTMSG
,
tp
,
HINTMSG_TODECK
)
local
g
=
g2
:
Select
(
tp
,
1
,
1
,
nil
)
local
g
=
g2
:
Select
(
tp
,
1
,
1
,
nil
)
Duel
.
SendtoDeck
(
g
,
nil
,
SEQ_DECKSHUFFLE
,
REASON_EFFECT
)
Duel
.
SendtoDeck
(
g
,
nil
,
SEQ_DECKSHUFFLE
,
REASON_EFFECT
)
end
end
end
--filters for common spell effects
--filters for common spell effects
function
yume
.
stellar_memories
.
SpellActivationBanishFilter
(
c
,
cid
,
tp
)
function
yume
.
stellar_memories
.
SpellActivationBanishFilter
(
c
,
cid
,
tp
)
...
@@ -735,6 +736,7 @@ end
...
@@ -735,6 +736,7 @@ end
function
yume
.
stellar_memories
.
BanishedSpellCon
(
cid
)
function
yume
.
stellar_memories
.
BanishedSpellCon
(
cid
)
return
function
(
e
,
tp
,
eg
,
ep
,
ev
,
re
,
r
,
rp
)
return
function
(
e
,
tp
,
eg
,
ep
,
ev
,
re
,
r
,
rp
)
return
re
and
re
:
GetHandler
():
IsCode
(
cid
)
return
re
and
re
:
GetHandler
():
IsCode
(
cid
)
end
end
end
--spell for low level and low link
--spell for low level and low link
function
yume
.
stellar_memories
.
LowSpellActivationTg
(
rid
,
lid
)
function
yume
.
stellar_memories
.
LowSpellActivationTg
(
rid
,
lid
)
...
@@ -743,6 +745,7 @@ function yume.stellar_memories.LowSpellActivationTg(rid,lid)
...
@@ -743,6 +745,7 @@ function yume.stellar_memories.LowSpellActivationTg(rid,lid)
return
Duel
.
IsExistingMatchingCard
(
yume
.
stellar_memories
.
SpellActivationSearchFilter
,
tp
,
LOCATION_DECK
,
0
,
1
,
nil
,
rid
)
return
Duel
.
IsExistingMatchingCard
(
yume
.
stellar_memories
.
SpellActivationSearchFilter
,
tp
,
LOCATION_DECK
,
0
,
1
,
nil
,
rid
)
or
Duel
.
IsExistingMatchingCard
(
yume
.
stellar_memories
.
SpellActivationBanishFilter
,
tp
,
LOCATION_EXTRA
,
0
,
1
,
nil
,
lid
,
tp
)
or
Duel
.
IsExistingMatchingCard
(
yume
.
stellar_memories
.
SpellActivationBanishFilter
,
tp
,
LOCATION_EXTRA
,
0
,
1
,
nil
,
lid
,
tp
)
end
end
end
end
end
function
yume
.
stellar_memories
.
LowSpellActivationOp
(
rid
,
lid
,
msg1
,
msg2
)
function
yume
.
stellar_memories
.
LowSpellActivationOp
(
rid
,
lid
,
msg1
,
msg2
)
return
function
(
e
,
tp
,
eg
,
ep
,
ev
,
re
,
r
,
rp
)
return
function
(
e
,
tp
,
eg
,
ep
,
ev
,
re
,
r
,
rp
)
...
@@ -761,6 +764,7 @@ function yume.stellar_memories.LowSpellActivationOp(rid,lid,msg1,msg2)
...
@@ -761,6 +764,7 @@ function yume.stellar_memories.LowSpellActivationOp(rid,lid,msg1,msg2)
local
g
=
g2
:
Select
(
tp
,
1
,
1
,
nil
)
local
g
=
g2
:
Select
(
tp
,
1
,
1
,
nil
)
Duel
.
Remove
(
g
,
POS_FACEUP
,
REASON_EFFECT
)
Duel
.
Remove
(
g
,
POS_FACEUP
,
REASON_EFFECT
)
end
end
end
end
end
function
yume
.
stellar_memories
.
LinkSummonFilter
(
c
)
function
yume
.
stellar_memories
.
LinkSummonFilter
(
c
)
return
c
:
IsLinkSummonable
(
nil
)
and
c
:
IsRace
(
RACE_SPELLCASTER
)
return
c
:
IsLinkSummonable
(
nil
)
and
c
:
IsRace
(
RACE_SPELLCASTER
)
...
...
expansions/script/c71404014.lua
View file @
075cdf5e
...
@@ -134,5 +134,4 @@ function s.op3(e,tp,eg,ep,ev,re,r,rp)
...
@@ -134,5 +134,4 @@ function s.op3(e,tp,eg,ep,ev,re,r,rp)
end
end
Duel
.
SpecialSummonComplete
()
Duel
.
SpecialSummonComplete
()
end
end
end
end
end
\ No newline at end of file
expansions/script/c9310007.lua
View file @
075cdf5e
...
@@ -49,19 +49,12 @@ function c9310007.spop(e,tp,eg,ep,ev,re,r,rp)
...
@@ -49,19 +49,12 @@ function c9310007.spop(e,tp,eg,ep,ev,re,r,rp)
local
kc
=
e
:
GetHandler
()
local
kc
=
e
:
GetHandler
()
if
kc
:
IsRelateToEffect
(
e
)
then
if
kc
:
IsRelateToEffect
(
e
)
then
Duel
.
SpecialSummon
(
kc
,
0
,
tp
,
tp
,
false
,
false
,
POS_FACEUP
)
Duel
.
SpecialSummon
(
kc
,
0
,
tp
,
tp
,
false
,
false
,
POS_FACEUP
)
local
sg
=
Duel
.
GetMatchingGroup
(
Card
.
IsCanBeSynchroMaterial
,
tp
,
LOCATION_MZONE
,
0
,
kc
)
local
g
=
Duel
.
GetMatchingGroup
(
Card
.
IsSynchroSummonable
,
tp
,
LOCATION_EXTRA
,
0
,
nil
,
c
)
local
kg
=
Duel
.
GetMatchingGroup
(
c9310007
.
cfilter
,
tp
,
LOCATION_EXTRA
,
0
,
nil
,
sg
,
kc
)
if
g
:
GetCount
()
>
0
and
Duel
.
SelectYesNo
(
tp
,
aux
.
Stringid
(
9310007
,
1
))
then
if
kg
:
GetCount
()
>
0
and
Duel
.
SelectYesNo
(
tp
,
aux
.
Stringid
(
9310007
,
1
))
then
Duel
.
BreakEffect
()
Duel
.
BreakEffect
()
Duel
.
Hint
(
HINT_SELECTMSG
,
tp
,
HINTMSG_SPSUMMON
)
Duel
.
Hint
(
HINT_SELECTMSG
,
tp
,
HINTMSG_SPSUMMON
)
local
kg2
=
kg
:
Select
(
tp
,
1
,
1
,
nil
)
local
sg
=
g
:
Select
(
tp
,
1
,
1
,
nil
)
local
sc
=
kg2
:
GetFirst
()
Duel
.
SynchroSummon
(
tp
,
sg
:
GetFirst
(),
c
)
local
sg1
=
sg
:
SelectSubGroup
(
tp
,
c9310007
.
mtfilter
,
false
,
1
,
#
sg
,
kc
,
sc
)
sg1
:
Merge
(
Group
.
FromCards
(
kc
))
sc
:
SetMaterial
(
sg1
)
Duel
.
BreakEffect
()
Duel
.
SynchroSummon
(
tp
,
sc
,
nil
,
sg1
)
sc
:
CompleteProcedure
()
end
end
end
end
end
end
...
...
expansions/script/c9310020.lua
View file @
075cdf5e
...
@@ -60,19 +60,12 @@ function cm.op(e,tp,eg,ep,ev,re,r,rp)
...
@@ -60,19 +60,12 @@ function cm.op(e,tp,eg,ep,ev,re,r,rp)
if
kc
:
IsRelateToEffect
(
e
)
and
Duel
.
GetLocationCount
(
tp
,
LOCATION_MZONE
)
>
0
if
kc
:
IsRelateToEffect
(
e
)
and
Duel
.
GetLocationCount
(
tp
,
LOCATION_MZONE
)
>
0
and
kc
:
IsCanBeSpecialSummoned
(
e
,
0
,
tp
,
false
,
false
)
then
and
kc
:
IsCanBeSpecialSummoned
(
e
,
0
,
tp
,
false
,
false
)
then
Duel
.
SpecialSummon
(
kc
,
0
,
tp
,
tp
,
false
,
false
,
POS_FACEUP
)
Duel
.
SpecialSummon
(
kc
,
0
,
tp
,
tp
,
false
,
false
,
POS_FACEUP
)
local
sg
=
Duel
.
GetMatchingGroup
(
Card
.
IsCanBeSynchroMaterial
,
tp
,
LOCATION_MZONE
,
0
,
kc
)
local
g
=
Duel
.
GetMatchingGroup
(
Card
.
IsSynchroSummonable
,
tp
,
LOCATION_EXTRA
,
0
,
nil
,
c
)
local
kg
=
Duel
.
GetMatchingGroup
(
cm
.
cfilter
,
tp
,
LOCATION_EXTRA
,
0
,
nil
,
sg
,
kc
)
if
g
:
GetCount
()
>
0
and
Duel
.
SelectYesNo
(
tp
,
aux
.
Stringid
(
9310007
,
1
))
then
if
kg
:
GetCount
()
>
0
and
Duel
.
SelectYesNo
(
tp
,
aux
.
Stringid
(
m
,
0
))
then
Duel
.
BreakEffect
()
Duel
.
BreakEffect
()
Duel
.
Hint
(
HINT_SELECTMSG
,
tp
,
HINTMSG_SPSUMMON
)
Duel
.
Hint
(
HINT_SELECTMSG
,
tp
,
HINTMSG_SPSUMMON
)
local
kg2
=
kg
:
Select
(
tp
,
1
,
1
,
nil
)
local
sg
=
g
:
Select
(
tp
,
1
,
1
,
nil
)
local
sc
=
kg2
:
GetFirst
()
Duel
.
SynchroSummon
(
tp
,
sg
:
GetFirst
(),
c
)
local
sg1
=
sg
:
SelectSubGroup
(
tp
,
cm
.
mtfilter
,
false
,
1
,
#
sg
,
kc
,
sc
)
sg1
:
Merge
(
kc
)
sc
:
SetMaterial
(
sg1
)
Duel
.
BreakEffect
()
Duel
.
SynchroSummon
(
tp
,
sc
,
nil
,
sg1
)
sc
:
CompleteProcedure
()
end
end
end
end
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