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
Ai
ygopro-222DIY-cards
Commits
752bd551
Commit
752bd551
authored
Jul 24, 2022
by
Tachibana
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
1145141919810
parent
f4d46e6e
Changes
14
Hide whitespace changes
Inline
Side-by-side
Showing
14 changed files
with
43 additions
and
28 deletions
+43
-28
expansions/script/c81905000.lua
expansions/script/c81905000.lua
+1
-1
expansions/script/c81905001.lua
expansions/script/c81905001.lua
+2
-1
expansions/script/c81905002.lua
expansions/script/c81905002.lua
+3
-2
expansions/script/c81905003.lua
expansions/script/c81905003.lua
+4
-3
expansions/script/c81905004.lua
expansions/script/c81905004.lua
+3
-2
expansions/script/c81905005.lua
expansions/script/c81905005.lua
+3
-2
expansions/script/c81905006.lua
expansions/script/c81905006.lua
+3
-2
expansions/script/c81905007.lua
expansions/script/c81905007.lua
+12
-6
expansions/script/c81905011.lua
expansions/script/c81905011.lua
+2
-2
expansions/script/c81905012.lua
expansions/script/c81905012.lua
+3
-2
expansions/script/c81905014.lua
expansions/script/c81905014.lua
+2
-1
expansions/script/c81905016.lua
expansions/script/c81905016.lua
+3
-2
expansions/script/c81905021.lua
expansions/script/c81905021.lua
+1
-1
expansions/script/c81905022.lua
expansions/script/c81905022.lua
+1
-1
No files found.
expansions/script/c81905000.lua
View file @
752bd551
...
...
@@ -163,7 +163,7 @@ function cm.thcost(e,tp,eg,ep,ev,re,r,rp,chk)
local
bg1
=
Duel
.
SelectMatchingCard
(
tp
,
cm
.
filter3
,
tp
,
LOCATION_REMOVED
,
0
,
1
,
1
,
nil
)
local
bg2
=
Duel
.
SelectMatchingCard
(
tp
,
cm
.
filter32
,
tp
,
LOCATION_REMOVED
,
0
,
1
,
1
,
nil
)
bg1
:
Merge
(
bg2
)
Duel
.
SendtoDeck
(
bg
2
,
tp
,
SEQ_DECKSHUFFLE
,
REASON_COST
)
Duel
.
SendtoDeck
(
bg
1
,
tp
,
SEQ_DECKSHUFFLE
,
REASON_COST
)
end
function
cm
.
sptg
(
e
,
tp
,
eg
,
ep
,
ev
,
re
,
r
,
rp
,
chk
)
if
chk
==
0
then
return
Duel
.
IsExistingMatchingCard
(
cm
.
filter31
,
tp
,
LOCATION_DECK
,
0
,
1
,
nil
)
end
...
...
expansions/script/c81905001.lua
View file @
752bd551
...
...
@@ -51,7 +51,8 @@ function cm.initial_effect(c)
end
--spfunctions
function
cm
.
hspcon
(
e
,
c
)
return
(
Duel
.
GetMatchingGroupCount
(
Card
.
IsSetCard
,
tp
,
LOCATION_MZONE
,
0
,
nil
,
0x5852
)
>
0
or
Duel
.
GetMatchingGroup
(
nil
,
tp
,
LOCATION_MZONE
,
0
,
nil
)
==
0
)
and
Duel
.
GetLocationCount
(
tp
,
LOCATION_MZONE
)
>
0
local
tp
=
e
:
GetHandler
():
GetOwner
()
return
(
Duel
.
GetMatchingGroupCount
(
Card
.
IsSetCard
,
tp
,
LOCATION_MZONE
,
0
,
nil
,
0x5852
)
>
0
or
Duel
.
GetFieldGroupCount
(
tp
,
LOCATION_MZONE
,
0
)
==
0
)
and
Duel
.
GetLocationCount
(
tp
,
LOCATION_MZONE
)
>
0
end
function
cm
.
atkcon
(
e
,
tp
,
eg
,
ep
,
ev
,
re
,
r
,
rp
)
local
ph
=
Duel
.
GetCurrentPhase
()
...
...
expansions/script/c81905002.lua
View file @
752bd551
...
...
@@ -46,11 +46,12 @@ function cm.initial_effect(c)
end
--spfunctions
function
cm
.
hspfilter
(
c
)
return
not
c
:
IsSetCard
(
0x852
)
return
not
c
:
IsSetCard
(
0x852
)
and
c
:
IsType
(
TYPE_MONSTER
)
end
function
cm
.
hspcon
(
e
,
c
)
local
tp
=
e
:
GetHandler
():
GetOwner
()
local
g1
=
Duel
.
GetMatchingGroup
(
cm
.
hspfilter
,
tp
,
LOCATION_MZONE
,
0
,
nil
)
return
(
g1
:
GetCount
()
==
0
or
Duel
.
Get
MatchingGroup
(
nil
,
tp
,
LOCATION_MZONE
,
0
,
nil
)
==
0
)
and
Duel
.
GetLocationCount
(
tp
,
LOCATION_MZONE
)
>
0
return
(
g1
:
GetCount
()
==
0
or
Duel
.
Get
FieldGroupCount
(
tp
,
LOCATION_MZONE
,
0
)
==
0
)
and
Duel
.
GetLocationCount
(
tp
,
LOCATION_MZONE
)
>
0
end
function
cm
.
atkcon
(
e
,
tp
,
eg
,
ep
,
ev
,
re
,
r
,
rp
)
local
ph
=
Duel
.
GetCurrentPhase
()
...
...
expansions/script/c81905003.lua
View file @
752bd551
...
...
@@ -48,11 +48,12 @@ function cm.initial_effect(c)
end
--spfunctions
function
cm
.
hspfilter
(
c
)
return
not
c
:
IsSetCard
(
0x852
)
return
not
c
:
IsSetCard
(
0x852
)
and
c
:
IsType
(
TYPE_MONSTER
)
end
function
cm
.
hspcon
(
e
,
c
)
local
tp
=
e
:
GetHandler
():
GetOwner
()
local
g1
=
Duel
.
GetMatchingGroup
(
cm
.
hspfilter
,
tp
,
LOCATION_MZONE
,
0
,
nil
)
return
(
g1
:
GetCount
()
==
0
or
Duel
.
Get
MatchingGroup
(
nil
,
tp
,
LOCATION_MZONE
,
0
,
nil
)
==
0
)
and
Duel
.
GetLocationCount
(
tp
,
LOCATION_MZONE
)
>
0
return
(
g1
:
GetCount
()
==
0
or
Duel
.
Get
FieldGroupCount
(
tp
,
LOCATION_MZONE
,
0
)
==
0
)
and
Duel
.
GetLocationCount
(
tp
,
LOCATION_MZONE
)
>
0
end
function
cm
.
atkcon
(
e
,
tp
,
eg
,
ep
,
ev
,
re
,
r
,
rp
)
local
ph
=
Duel
.
GetCurrentPhase
()
...
...
@@ -72,7 +73,7 @@ function cm.cost1(e,tp,eg,ep,ev,re,r,rp,chk)
Duel
.
ShuffleHand
(
tp
)
end
function
cm
.
thfilter1
(
c
,
e
)
return
c
:
IsSetCard
(
0x6852
)
and
c
:
IsType
(
TYPE_MONSTER
)
and
c
:
IsCanBeSpecialSummoned
(
e
,
tp
,
tp
,
nil
,
nil
)
return
c
:
IsSetCard
(
0x6852
)
and
c
:
IsType
(
TYPE_MONSTER
)
and
c
:
IsCanBeSpecialSummoned
(
e
,
0
,
tp
,
nil
,
nil
)
end
function
cm
.
target1
(
e
,
tp
,
eg
,
ep
,
ev
,
re
,
r
,
rp
,
chk
)
if
chk
==
0
then
return
Duel
.
IsExistingMatchingCard
(
cm
.
costfilter1
,
tp
,
LOCATION_HAND
,
0
,
1
,
nil
)
end
...
...
expansions/script/c81905004.lua
View file @
752bd551
...
...
@@ -47,11 +47,12 @@ function cm.initial_effect(c)
end
--spfunctions
function
cm
.
hspfilter
(
c
)
return
not
c
:
IsSetCard
(
0x852
)
return
not
c
:
IsSetCard
(
0x852
)
and
c
:
IsType
(
TYPE_MONSTER
)
end
function
cm
.
hspcon
(
e
,
c
)
local
tp
=
e
:
GetHandler
():
GetOwner
()
local
g1
=
Duel
.
GetMatchingGroup
(
cm
.
hspfilter
,
tp
,
LOCATION_MZONE
,
0
,
nil
)
return
(
g1
:
GetCount
()
==
0
or
Duel
.
Get
MatchingGroup
(
nil
,
tp
,
LOCATION_MZONE
,
0
,
nil
)
==
0
)
and
Duel
.
GetLocationCount
(
tp
,
LOCATION_MZONE
)
>
0
return
(
g1
:
GetCount
()
==
0
or
Duel
.
Get
FieldGroupCount
(
tp
,
LOCATION_MZONE
,
0
)
==
0
)
and
Duel
.
GetLocationCount
(
tp
,
LOCATION_MZONE
)
>
0
end
function
cm
.
atkcon
(
e
,
tp
,
eg
,
ep
,
ev
,
re
,
r
,
rp
)
local
ph
=
Duel
.
GetCurrentPhase
()
...
...
expansions/script/c81905005.lua
View file @
752bd551
...
...
@@ -47,11 +47,12 @@ function cm.initial_effect(c)
end
--spfunctions
function
cm
.
hspfilter
(
c
)
return
not
c
:
IsSetCard
(
0x852
)
return
not
c
:
IsSetCard
(
0x852
)
and
c
:
IsType
(
TYPE_MONSTER
)
end
function
cm
.
hspcon
(
e
,
c
)
local
tp
=
e
:
GetHandler
():
GetOwner
()
local
g1
=
Duel
.
GetMatchingGroup
(
cm
.
hspfilter
,
tp
,
LOCATION_MZONE
,
0
,
nil
)
return
(
g1
:
GetCount
()
==
0
or
Duel
.
Get
MatchingGroup
(
nil
,
tp
,
LOCATION_MZONE
,
0
,
nil
)
==
0
)
and
Duel
.
GetLocationCount
(
tp
,
LOCATION_MZONE
)
>
0
return
(
g1
:
GetCount
()
==
0
or
Duel
.
Get
FieldGroupCount
(
tp
,
LOCATION_MZONE
,
0
)
==
0
)
and
Duel
.
GetLocationCount
(
tp
,
LOCATION_MZONE
)
>
0
end
function
cm
.
atkcon
(
e
,
tp
,
eg
,
ep
,
ev
,
re
,
r
,
rp
)
local
ph
=
Duel
.
GetCurrentPhase
()
...
...
expansions/script/c81905006.lua
View file @
752bd551
...
...
@@ -51,11 +51,12 @@ function cm.initial_effect(c)
end
--spfunctions
function
cm
.
hspfilter
(
c
)
return
not
c
:
IsSetCard
(
0x852
)
return
not
c
:
IsSetCard
(
0x852
)
and
c
:
IsType
(
TYPE_MONSTER
)
end
function
cm
.
hspcon
(
e
,
c
)
local
tp
=
e
:
GetHandler
():
GetOwner
()
local
g1
=
Duel
.
GetMatchingGroup
(
cm
.
hspfilter
,
tp
,
LOCATION_MZONE
,
0
,
nil
)
return
(
g1
:
GetCount
()
==
0
or
Duel
.
Get
MatchingGroup
(
nil
,
tp
,
LOCATION_MZONE
,
0
,
nil
)
==
0
)
and
Duel
.
GetLocationCount
(
tp
,
LOCATION_MZONE
)
>
0
return
(
g1
:
GetCount
()
==
0
or
Duel
.
Get
FieldGroupCount
(
tp
,
LOCATION_MZONE
,
0
)
==
0
)
and
Duel
.
GetLocationCount
(
tp
,
LOCATION_MZONE
)
>
0
end
function
cm
.
atkcon
(
e
,
tp
,
eg
,
ep
,
ev
,
re
,
r
,
rp
)
local
ph
=
Duel
.
GetCurrentPhase
()
...
...
expansions/script/c81905007.lua
View file @
752bd551
...
...
@@ -91,20 +91,26 @@ function cm.thop(e,tp,eg,ep,ev,re,r,rp)
end
--functions e3 needs
function
cm
.
xyzfilter
(
c
,
e
,
tp
)
return
c
:
IsSetCard
(
0x852
)
and
c
:
Is
SpecialSummonable
(
SUMMON_TYPE_XYZ
)
and
c
:
Is
CanBeSpecialSummoned
(
e
,
SUMMON_TYPE_XYZ
,
tp
,
false
,
false
)
and
c
:
IsRankBelow
(
9
)
return
c
:
IsSetCard
(
0x852
)
and
c
:
IsCanBeSpecialSummoned
(
e
,
SUMMON_TYPE_XYZ
,
tp
,
false
,
false
)
and
c
:
IsRankBelow
(
9
)
end
function
cm
.
xyzfilter2
(
c
)
return
c
:
IsSetCard
(
0x852
)
and
c
:
IsCanBeXyzMaterial
(
nil
)
and
c
:
IsType
(
TYPE_MONSTER
)
and
c
:
IsAttackAbove
(
2500
)
end
function
cm
.
xyztg
(
e
,
tp
,
eg
,
ep
,
ev
,
re
,
r
,
rp
,
chk
)
local
mg
=
Duel
.
GetFieldGroup
(
tp
,
LOCATION_MZONE
+
LOCATION_GRAVE
+
LOCATION_REMOVED
,
0
)
local
mg2
=
mg
:
Filter
(
cm
.
xyzfilter2
,
nil
)
if
chk
==
0
then
return
Duel
.
IsExistingMatchingCard
(
cm
.
xyzfilter
,
tp
,
LOCATION_EXTRA
,
0
,
1
,
nil
,
e
,
tp
)
and
mg2
:
GetCount
()
>=
0
end
local
mg1
=
Duel
.
GetMatchingGroup
(
cm
.
xyzfilter2
,
tp
,
LOCATION_GRAVE
,
0
,
nil
)
local
mg2
=
Duel
.
GetMatchingGroup
(
cm
.
xyzfilter2
,
tp
,
LOCATION_MZONE
,
0
,
nil
)
local
mg3
=
Duel
.
GetMatchingGroup
(
cm
.
xyzfilter2
,
tp
,
LOCATION_REMOVED
,
0
,
nil
)
mg1
:
Merge
(
mg2
)
mg1
:
Merge
(
mg3
)
if
chk
==
0
then
return
Duel
.
IsExistingMatchingCard
(
cm
.
xyzfilter
,
tp
,
LOCATION_EXTRA
,
0
,
1
,
nil
,
e
,
tp
)
and
mg1
:
GetCount
()
>=
0
end
Duel
.
SetOperationInfo
(
0
,
CATEGORY_SPECIAL_SUMMON
,
nil
,
1
,
tp
,
LOCATION_EXTRA
)
end
function
cm
.
xyzop
(
e
,
tp
,
eg
,
ep
,
ev
,
re
,
r
,
rp
)
local
mg
=
Duel
.
GetFieldGroup
(
tp
,
LOCATION_MZONE
+
LOCATION_GRAVE
+
LOCATION_REMOVED
,
0
)
local
mg2
=
mg
:
Filter
(
cm
.
xyzfilter2
,
nil
)
local
mg1
=
Duel
.
GetMatchingGroup
(
cm
.
xyzfilter2
,
tp
,
LOCATION_GRAVE
,
0
,
nil
)
local
mg2
=
Duel
.
GetMatchingGroup
(
cm
.
xyzfilter2
,
tp
,
LOCATION_MZONE
,
0
,
nil
)
local
mg3
=
Duel
.
GetMatchingGroup
(
cm
.
xyzfilter2
,
tp
,
LOCATION_REMOVED
,
0
,
nil
)
mg1
:
Merge
(
mg2
)
mg1
:
Merge
(
mg3
)
local
g
=
Duel
.
GetMatchingGroup
(
cm
.
xyzfilter
,
tp
,
LOCATION_EXTRA
,
0
,
nil
,
e
)
if
g
:
GetCount
()
>
0
then
Duel
.
Hint
(
HINT_SELECTMSG
,
tp
,
HINTMSG_SPSUMMON
)
...
...
expansions/script/c81905011.lua
View file @
752bd551
...
...
@@ -50,7 +50,7 @@ function cm.activate(e,tp,eg,ep,ev,re,r,rp)
if
g1
:
GetCount
()
>
0
then
Duel
.
Hint
(
HINTMSG_SELECT
,
tp
,
HINTMSG_REMOVE
)
local
rg1
=
g1
:
Select
(
g1
,
1
,
1
,
nil
)
if
Duel
.
Remove
(
g1
,
POS_FACEUP
,
REASON_EFFECT
)
then
if
Duel
.
Remove
(
r
g1
,
POS_FACEUP
,
REASON_EFFECT
)
then
local
e2
=
Effect
.
CreateEffect
(
e
:
GetHandler
())
e2
:
SetType
(
EFFECT_TYPE_FIELD
)
e2
:
SetCode
(
EFFECT_CANNOT_SPECIAL_SUMMON
)
...
...
@@ -65,7 +65,7 @@ function cm.activate(e,tp,eg,ep,ev,re,r,rp)
Duel
.
SpecialSummon
(
fg
,
SUMMON_TYPE_FUSION
,
tp
,
tp
,
false
,
false
,
POS_FACEUP
)
end
end
end
end
end
function
cm
.
splimit
(
e
,
c
)
return
not
c
:
IsSetCard
(
0x852
)
...
...
expansions/script/c81905012.lua
View file @
752bd551
...
...
@@ -41,11 +41,12 @@ function cm.initial_effect(c)
end
--spfunctions
function
cm
.
hspfilter
(
c
)
return
not
c
:
IsSetCard
(
0x852
)
return
not
c
:
IsSetCard
(
0x852
)
and
c
:
IsType
(
TYPE_MONSTER
)
end
function
cm
.
hspcon
(
e
,
c
)
local
tp
=
e
:
GetHandler
():
GetOwner
()
local
g1
=
Duel
.
GetMatchingGroup
(
cm
.
hspfilter
,
tp
,
LOCATION_MZONE
,
0
,
nil
)
return
(
g1
:
GetCount
()
==
0
or
Duel
.
Get
MatchingGroup
(
nil
,
tp
,
LOCATION_MZONE
,
0
,
nil
)
==
0
)
and
Duel
.
GetLocationCount
(
tp
,
LOCATION_MZONE
)
>
0
return
(
g1
:
GetCount
()
==
0
or
Duel
.
Get
FieldGroupCount
(
tp
,
LOCATION_MZONE
,
0
)
==
0
)
and
Duel
.
GetLocationCount
(
tp
,
LOCATION_MZONE
)
>
0
end
function
cm
.
atkcon
(
e
,
tp
,
eg
,
ep
,
ev
,
re
,
r
,
rp
)
local
ph
=
Duel
.
GetCurrentPhase
()
...
...
expansions/script/c81905014.lua
View file @
752bd551
...
...
@@ -45,9 +45,10 @@ function cm.initial_effect(c)
end
--spfunctions
function
cm
.
hspfilter
(
c
)
return
not
c
:
IsSetCard
(
0x852
)
return
not
c
:
IsSetCard
(
0x852
)
and
c
:
IsType
(
TYPE_MONSTER
)
end
function
cm
.
hspcon
(
e
,
c
)
local
tp
=
e
:
GetHandler
():
GetOwner
()
local
g1
=
Duel
.
GetMatchingGroup
(
cm
.
hspfilter
,
tp
,
LOCATION_MZONE
,
0
,
nil
)
return
g1
:
GetCount
()
==
0
and
Duel
.
GetLocationCount
(
tp
,
LOCATION_MZONE
)
>
0
end
...
...
expansions/script/c81905016.lua
View file @
752bd551
...
...
@@ -21,7 +21,7 @@ function cm.initial_effect(c)
e22
:
SetRange
(
LOCATION_MZONE
)
e22
:
SetCondition
(
cm
.
atkcon
)
e22
:
SetValue
(
0
)
c
:
RegisterEffect
(
e22
)
c
:
RegisterEffect
(
e22
)
local
e2
=
Effect
.
CreateEffect
(
c
)
e2
:
SetDescription
(
aux
.
Stringid
(
m
,
2
))
e2
:
SetCategory
(
CATEGORY_SPECIAL_SUMMON
)
...
...
@@ -47,9 +47,10 @@ function cm.initial_effect(c)
end
--spfunctions
function
cm
.
hspfilter
(
c
)
return
not
c
:
IsSetCard
(
0x852
)
return
not
c
:
IsSetCard
(
0x852
)
and
c
:
IsType
(
TYPE_MONSTER
)
end
function
cm
.
hspcon
(
e
,
c
)
local
tp
=
e
:
GetHandler
():
GetOwner
()
local
g1
=
Duel
.
GetMatchingGroup
(
cm
.
hspfilter
,
tp
,
LOCATION_MZONE
,
0
,
nil
)
return
g1
:
GetCount
()
==
0
and
Duel
.
GetLocationCount
(
tp
,
LOCATION_MZONE
)
>
0
end
...
...
expansions/script/c81905021.lua
View file @
752bd551
...
...
@@ -42,7 +42,7 @@ function cm.initial_effect(c)
end
--XyzSummon
function
cm
.
mfilter
(
c
,
xyzc
)
return
(
c
:
IsXyzLevel
(
xyzc
,
8
)
and
c
:
IsRace
(
RACE_SPELLCASTER
))
or
(
c
:
IsSetCard
(
0x852
)
and
c
:
GetBaseAttack
()
>
2500
)
return
(
c
:
IsXyzLevel
(
xyzc
,
8
)
and
c
:
IsRace
(
RACE_SPELLCASTER
))
or
(
c
:
IsSetCard
(
0x852
)
and
c
:
GetBaseAttack
()
>
=
2500
)
end
--negate
function
cm
.
discon
(
e
)
...
...
expansions/script/c81905022.lua
View file @
752bd551
...
...
@@ -42,7 +42,7 @@ function cm.initial_effect(c)
end
--XyzSummon
function
cm
.
mfilter
(
c
,
xyzc
)
return
(
c
:
IsXyzLevel
(
xyzc
,
7
)
and
c
:
IsRace
(
RACE_ZOMBIE
))
or
(
c
:
IsSetCard
(
0x852
)
and
c
:
GetBaseAttack
()
>
2500
)
return
(
c
:
IsXyzLevel
(
xyzc
,
7
)
and
c
:
IsRace
(
RACE_ZOMBIE
))
or
(
c
:
IsSetCard
(
0x852
)
and
c
:
GetBaseAttack
()
>
=
2500
)
end
--ImmuneToEffect
function
cm
.
immval
(
e
,
te
)
...
...
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