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
Soulgamer
ygopro-222DIY-cards
Commits
a0ed4771
Commit
a0ed4771
authored
Sep 05, 2021
by
Tachibana
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
ndyd
parent
a51dccaf
Changes
9
Show whitespace changes
Inline
Side-by-side
Showing
9 changed files
with
27 additions
and
30 deletions
+27
-30
expansions/222DIY.cdb
expansions/222DIY.cdb
+0
-0
expansions/script/c65020067.lua
expansions/script/c65020067.lua
+6
-6
expansions/script/c65020068.lua
expansions/script/c65020068.lua
+4
-5
expansions/script/c65020069.lua
expansions/script/c65020069.lua
+4
-4
expansions/script/c65020070.lua
expansions/script/c65020070.lua
+4
-4
expansions/script/c65020071.lua
expansions/script/c65020071.lua
+4
-5
expansions/script/c65020072.lua
expansions/script/c65020072.lua
+4
-4
expansions/script/c65020079.lua
expansions/script/c65020079.lua
+0
-1
expansions/strings.conf
expansions/strings.conf
+1
-1
No files found.
expansions/222DIY.cdb
View file @
a0ed4771
No preview for this file type
expansions/script/c65020067.lua
View file @
a0ed4771
...
...
@@ -14,7 +14,7 @@ function c65020067.thfil(c)
end
function
c65020067
.
target
(
e
,
tp
,
eg
,
ep
,
ev
,
re
,
r
,
rp
,
chk
)
if
chk
==
0
then
return
Duel
.
IsExistingMatchingCard
(
c65020067
.
thfil
,
tp
,
LOCATION_DECK
,
0
,
1
,
nil
)
and
Duel
.
GetLocationCount
(
tp
,
LOCATION_MZONE
)
>
0
and
Duel
.
IsPlayerCanSpecialSummonMonster
(
tp
,
65020067
,
0
,
0x21
,
0
,
2000
,
4
,
RACE_WYRM
,
ATTRIBUTE_DARK
)
end
and
Duel
.
IsPlayerCanSpecialSummonMonster
(
tp
,
65020067
,
0
,
TYPES_EFFECT_TRAP_MONSTER
,
0
,
2000
,
4
,
RACE_WYRM
,
ATTRIBUTE_DARK
)
end
Duel
.
SetOperationInfo
(
0
,
CATEGORY_TOHAND
,
nil
,
1
,
tp
,
LOCATION_DECK
)
Duel
.
SetOperationInfo
(
0
,
CATEGORY_SPECIAL_SUMMON
,
e
:
GetHandler
(),
1
,
0
,
0
)
end
...
...
@@ -25,7 +25,7 @@ function c65020067.activate(e,tp,eg,ep,ev,re,r,rp)
Duel
.
ConfirmCards
(
1
-
tp
,
g
)
Duel
.
BreakEffect
()
if
not
c
:
IsRelateToEffect
(
e
)
or
Duel
.
GetLocationCount
(
tp
,
LOCATION_MZONE
)
<=
0
or
not
Duel
.
IsPlayerCanSpecialSummonMonster
(
tp
,
65020067
,
0
,
0x21
,
0
,
2000
,
4
,
RACE_WYRM
,
ATTRIBUTE_DARK
)
then
return
end
or
not
Duel
.
IsPlayerCanSpecialSummonMonster
(
tp
,
65020067
,
0
,
TYPES_EFFECT_TRAP_MONSTER
,
0
,
2000
,
4
,
RACE_WYRM
,
ATTRIBUTE_DARK
)
then
return
end
c
:
AddMonsterAttribute
(
TYPE_EFFECT
+
TYPE_TRAP
)
Duel
.
SpecialSummonStep
(
c
,
0
,
tp
,
tp
,
true
,
false
,
POS_FACEUP
)
--Activate
...
...
@@ -37,8 +37,8 @@ function c65020067.activate(e,tp,eg,ep,ev,re,r,rp)
e1
:
SetReset
(
RESET_EVENT
+
RESETS_STANDARD
)
e1
:
SetCondition
(
c65020067
.
con
)
e1
:
SetCost
(
c65020067
.
cost
)
e1
:
SetTarget
(
c65020067
.
target
)
e1
:
SetOperation
(
c65020067
.
activate
)
e1
:
SetTarget
(
c65020067
.
target
2
)
e1
:
SetOperation
(
c65020067
.
activate
2
)
c
:
RegisterEffect
(
e1
,
true
)
Duel
.
SpecialSummonComplete
()
end
...
...
@@ -55,11 +55,11 @@ end
function
c65020067
.
filter
(
c
)
return
c
:
IsXyzSummonable
(
nil
)
and
c
:
IsSetCard
(
0x9da3
)
end
function
c65020067
.
target
(
e
,
tp
,
eg
,
ep
,
ev
,
re
,
r
,
rp
,
chk
)
function
c65020067
.
target
2
(
e
,
tp
,
eg
,
ep
,
ev
,
re
,
r
,
rp
,
chk
)
if
chk
==
0
then
return
Duel
.
IsExistingMatchingCard
(
c65020067
.
filter
,
tp
,
LOCATION_EXTRA
,
0
,
1
,
nil
)
end
Duel
.
SetOperationInfo
(
0
,
CATEGORY_SPECIAL_SUMMON
,
nil
,
1
,
0
,
0
)
end
function
c65020067
.
activate
(
e
,
tp
,
eg
,
ep
,
ev
,
re
,
r
,
rp
)
function
c65020067
.
activate
2
(
e
,
tp
,
eg
,
ep
,
ev
,
re
,
r
,
rp
)
Duel
.
Hint
(
HINT_SELECTMSG
,
tp
,
HINTMSG_SPSUMMON
)
local
g
=
Duel
.
SelectMatchingCard
(
tp
,
c65020067
.
filter
,
tp
,
LOCATION_EXTRA
,
0
,
1
,
1
,
nil
)
local
tc
=
g
:
GetFirst
()
...
...
expansions/script/c65020068.lua
View file @
a0ed4771
...
...
@@ -22,7 +22,6 @@ function c65020068.activate(e,tp,eg,ep,ev,re,r,rp)
if
Duel
.
GetLocationCount
(
tp
,
LOCATION_SZONE
)
<=
0
then
return
end
local
g
=
Duel
.
SelectMatchingCard
(
tp
,
c65020068
.
thfil
,
tp
,
LOCATION_DECK
,
0
,
1
,
1
,
nil
)
if
g
:
GetCount
()
>
0
and
Duel
.
SSet
(
tp
,
g
:
GetFirst
())
~=
0
then
Duel
.
ConfirmCards
(
1
-
tp
,
g
)
Duel
.
BreakEffect
()
if
not
c
:
IsRelateToEffect
(
e
)
or
Duel
.
GetLocationCount
(
tp
,
LOCATION_MZONE
)
<=
0
or
not
Duel
.
IsPlayerCanSpecialSummonMonster
(
tp
,
65020068
,
0
,
0x21
,
1600
,
1000
,
4
,
RACE_AQUA
,
ATTRIBUTE_DARK
)
then
return
end
...
...
@@ -37,8 +36,8 @@ function c65020068.activate(e,tp,eg,ep,ev,re,r,rp)
e1
:
SetReset
(
RESET_EVENT
+
RESETS_STANDARD
)
e1
:
SetCondition
(
c65020068
.
con
)
e1
:
SetCost
(
c65020068
.
cost
)
e1
:
SetTarget
(
c65020068
.
target
)
e1
:
SetOperation
(
c65020068
.
activate
)
e1
:
SetTarget
(
c65020068
.
target
2
)
e1
:
SetOperation
(
c65020068
.
activate
2
)
c
:
RegisterEffect
(
e1
,
true
)
Duel
.
SpecialSummonComplete
()
end
...
...
@@ -55,11 +54,11 @@ end
function
c65020068
.
filter
(
c
)
return
c
:
IsXyzSummonable
(
nil
)
and
c
:
IsSetCard
(
0x9da3
)
end
function
c65020068
.
target
(
e
,
tp
,
eg
,
ep
,
ev
,
re
,
r
,
rp
,
chk
)
function
c65020068
.
target
2
(
e
,
tp
,
eg
,
ep
,
ev
,
re
,
r
,
rp
,
chk
)
if
chk
==
0
then
return
Duel
.
IsExistingMatchingCard
(
c65020068
.
filter
,
tp
,
LOCATION_EXTRA
,
0
,
1
,
nil
)
end
Duel
.
SetOperationInfo
(
0
,
CATEGORY_SPECIAL_SUMMON
,
nil
,
1
,
0
,
0
)
end
function
c65020068
.
activate
(
e
,
tp
,
eg
,
ep
,
ev
,
re
,
r
,
rp
)
function
c65020068
.
activate
2
(
e
,
tp
,
eg
,
ep
,
ev
,
re
,
r
,
rp
)
Duel
.
Hint
(
HINT_SELECTMSG
,
tp
,
HINTMSG_SPSUMMON
)
local
g
=
Duel
.
SelectMatchingCard
(
tp
,
c65020068
.
filter
,
tp
,
LOCATION_EXTRA
,
0
,
1
,
1
,
nil
)
local
tc
=
g
:
GetFirst
()
...
...
expansions/script/c65020069.lua
View file @
a0ed4771
...
...
@@ -36,8 +36,8 @@ function c65020069.activate(e,tp,eg,ep,ev,re,r,rp)
e1
:
SetReset
(
RESET_EVENT
+
RESETS_STANDARD
)
e1
:
SetCondition
(
c65020069
.
con
)
e1
:
SetCost
(
c65020069
.
cost
)
e1
:
SetTarget
(
c65020069
.
target
)
e1
:
SetOperation
(
c65020069
.
activate
)
e1
:
SetTarget
(
c65020069
.
target
2
)
e1
:
SetOperation
(
c65020069
.
activate
2
)
c
:
RegisterEffect
(
e1
,
true
)
Duel
.
SpecialSummonComplete
()
end
...
...
@@ -54,11 +54,11 @@ end
function
c65020069
.
filter
(
c
)
return
c
:
IsLinkSummonable
(
nil
)
and
c
:
IsSetCard
(
0x9da3
)
end
function
c65020069
.
target
(
e
,
tp
,
eg
,
ep
,
ev
,
re
,
r
,
rp
,
chk
)
function
c65020069
.
target
2
(
e
,
tp
,
eg
,
ep
,
ev
,
re
,
r
,
rp
,
chk
)
if
chk
==
0
then
return
Duel
.
IsExistingMatchingCard
(
c65020069
.
filter
,
tp
,
LOCATION_EXTRA
,
0
,
1
,
nil
)
end
Duel
.
SetOperationInfo
(
0
,
CATEGORY_SPECIAL_SUMMON
,
nil
,
1
,
0
,
0
)
end
function
c65020069
.
activate
(
e
,
tp
,
eg
,
ep
,
ev
,
re
,
r
,
rp
)
function
c65020069
.
activate
2
(
e
,
tp
,
eg
,
ep
,
ev
,
re
,
r
,
rp
)
Duel
.
Hint
(
HINT_SELECTMSG
,
tp
,
HINTMSG_SPSUMMON
)
local
g
=
Duel
.
SelectMatchingCard
(
tp
,
c65020069
.
filter
,
tp
,
LOCATION_EXTRA
,
0
,
1
,
1
,
nil
)
local
tc
=
g
:
GetFirst
()
...
...
expansions/script/c65020070.lua
View file @
a0ed4771
...
...
@@ -37,8 +37,8 @@ function c65020070.activate(e,tp,eg,ep,ev,re,r,rp)
e1
:
SetReset
(
RESET_EVENT
+
RESETS_STANDARD
)
e1
:
SetCondition
(
c65020070
.
con
)
e1
:
SetCost
(
c65020070
.
cost
)
e1
:
SetTarget
(
c65020070
.
target
)
e1
:
SetOperation
(
c65020070
.
activate
)
e1
:
SetTarget
(
c65020070
.
target
2
)
e1
:
SetOperation
(
c65020070
.
activate
2
)
c
:
RegisterEffect
(
e1
,
true
)
Duel
.
SpecialSummonComplete
()
end
...
...
@@ -55,11 +55,11 @@ end
function
c65020070
.
filter
(
c
)
return
c
:
IsLinkSummonable
(
nil
)
and
c
:
IsSetCard
(
0x9da3
)
end
function
c65020070
.
target
(
e
,
tp
,
eg
,
ep
,
ev
,
re
,
r
,
rp
,
chk
)
function
c65020070
.
target
2
(
e
,
tp
,
eg
,
ep
,
ev
,
re
,
r
,
rp
,
chk
)
if
chk
==
0
then
return
Duel
.
IsExistingMatchingCard
(
c65020070
.
filter
,
tp
,
LOCATION_EXTRA
,
0
,
1
,
nil
)
end
Duel
.
SetOperationInfo
(
0
,
CATEGORY_SPECIAL_SUMMON
,
nil
,
1
,
0
,
0
)
end
function
c65020070
.
activate
(
e
,
tp
,
eg
,
ep
,
ev
,
re
,
r
,
rp
)
function
c65020070
.
activate
2
(
e
,
tp
,
eg
,
ep
,
ev
,
re
,
r
,
rp
)
Duel
.
Hint
(
HINT_SELECTMSG
,
tp
,
HINTMSG_SPSUMMON
)
local
g
=
Duel
.
SelectMatchingCard
(
tp
,
c65020070
.
filter
,
tp
,
LOCATION_EXTRA
,
0
,
1
,
1
,
nil
)
local
tc
=
g
:
GetFirst
()
...
...
expansions/script/c65020071.lua
View file @
a0ed4771
...
...
@@ -22,7 +22,6 @@ function c65020071.activate(e,tp,eg,ep,ev,re,r,rp)
if
Duel
.
GetLocationCount
(
tp
,
LOCATION_SZONE
)
<=
0
then
return
end
local
g
=
Duel
.
SelectMatchingCard
(
tp
,
c65020071
.
thfil
,
tp
,
LOCATION_GRAVE
,
0
,
1
,
1
,
nil
)
if
g
:
GetCount
()
>
0
and
Duel
.
SSet
(
tp
,
g
)
~=
0
then
Duel
.
ConfirmCards
(
1
-
tp
,
g
)
Duel
.
BreakEffect
()
if
not
c
:
IsRelateToEffect
(
e
)
or
Duel
.
GetLocationCount
(
tp
,
LOCATION_MZONE
)
<=
0
or
not
Duel
.
IsPlayerCanSpecialSummonMonster
(
tp
,
65020071
,
0
,
0x21
,
500
,
1800
,
4
,
RACE_ROCK
,
ATTRIBUTE_DARK
)
then
return
end
...
...
@@ -37,8 +36,8 @@ function c65020071.activate(e,tp,eg,ep,ev,re,r,rp)
e1
:
SetReset
(
RESET_EVENT
+
RESETS_STANDARD
)
e1
:
SetCondition
(
c65020071
.
con
)
e1
:
SetCost
(
c65020071
.
cost
)
e1
:
SetTarget
(
c65020071
.
target
)
e1
:
SetOperation
(
c65020071
.
activate
)
e1
:
SetTarget
(
c65020071
.
target
2
)
e1
:
SetOperation
(
c65020071
.
activate
2
)
c
:
RegisterEffect
(
e1
,
true
)
Duel
.
SpecialSummonComplete
()
end
...
...
@@ -55,11 +54,11 @@ end
function
c65020071
.
filter
(
c
)
return
c
:
IsXyzSummonable
(
nil
)
and
c
:
IsSetCard
(
0x9da3
)
end
function
c65020071
.
target
(
e
,
tp
,
eg
,
ep
,
ev
,
re
,
r
,
rp
,
chk
)
function
c65020071
.
target
2
(
e
,
tp
,
eg
,
ep
,
ev
,
re
,
r
,
rp
,
chk
)
if
chk
==
0
then
return
Duel
.
IsExistingMatchingCard
(
c65020071
.
filter
,
tp
,
LOCATION_EXTRA
,
0
,
1
,
nil
)
end
Duel
.
SetOperationInfo
(
0
,
CATEGORY_SPECIAL_SUMMON
,
nil
,
1
,
0
,
0
)
end
function
c65020071
.
activate
(
e
,
tp
,
eg
,
ep
,
ev
,
re
,
r
,
rp
)
function
c65020071
.
activate
2
(
e
,
tp
,
eg
,
ep
,
ev
,
re
,
r
,
rp
)
Duel
.
Hint
(
HINT_SELECTMSG
,
tp
,
HINTMSG_SPSUMMON
)
local
g
=
Duel
.
SelectMatchingCard
(
tp
,
c65020071
.
filter
,
tp
,
LOCATION_EXTRA
,
0
,
1
,
1
,
nil
)
local
tc
=
g
:
GetFirst
()
...
...
expansions/script/c65020072.lua
View file @
a0ed4771
...
...
@@ -39,8 +39,8 @@ function c65020072.activate(e,tp,eg,ep,ev,re,r,rp)
e1
:
SetReset
(
RESET_EVENT
+
RESETS_STANDARD
)
e1
:
SetCondition
(
c65020072
.
con
)
e1
:
SetCost
(
c65020072
.
cost
)
e1
:
SetTarget
(
c65020072
.
target
)
e1
:
SetOperation
(
c65020072
.
activate
)
e1
:
SetTarget
(
c65020072
.
target
2
)
e1
:
SetOperation
(
c65020072
.
activate
2
)
c
:
RegisterEffect
(
e1
,
true
)
Duel
.
SpecialSummonComplete
()
end
...
...
@@ -57,11 +57,11 @@ end
function
c65020072
.
filter
(
c
)
return
c
:
IsLinkSummonable
(
nil
)
and
c
:
IsSetCard
(
0x9da3
)
end
function
c65020072
.
target
(
e
,
tp
,
eg
,
ep
,
ev
,
re
,
r
,
rp
,
chk
)
function
c65020072
.
target
2
(
e
,
tp
,
eg
,
ep
,
ev
,
re
,
r
,
rp
,
chk
)
if
chk
==
0
then
return
Duel
.
IsExistingMatchingCard
(
c65020072
.
filter
,
tp
,
LOCATION_EXTRA
,
0
,
1
,
nil
)
end
Duel
.
SetOperationInfo
(
0
,
CATEGORY_SPECIAL_SUMMON
,
nil
,
1
,
0
,
0
)
end
function
c65020072
.
activate
(
e
,
tp
,
eg
,
ep
,
ev
,
re
,
r
,
rp
)
function
c65020072
.
activate
2
(
e
,
tp
,
eg
,
ep
,
ev
,
re
,
r
,
rp
)
Duel
.
Hint
(
HINT_SELECTMSG
,
tp
,
HINTMSG_SPSUMMON
)
local
g
=
Duel
.
SelectMatchingCard
(
tp
,
c65020072
.
filter
,
tp
,
LOCATION_EXTRA
,
0
,
1
,
1
,
nil
)
local
tc
=
g
:
GetFirst
()
...
...
expansions/script/c65020079.lua
View file @
a0ed4771
...
...
@@ -61,7 +61,6 @@ function c65020079.thop(e,tp,eg,ep,ev,re,r,rp)
Duel
.
BreakEffect
()
local
g2
=
Duel
.
SelectMatchingCard
(
tp
,
c65020079
.
setfil
,
tp
,
LOCATION_GRAVE
,
0
,
1
,
1
,
nil
)
Duel
.
SSet
(
tp
,
g2
:
GetFirst
())
Duel
.
ConfirmCards
(
1
-
tp
,
g2
)
end
end
end
...
...
expansions/strings.conf
View file @
a0ed4771
...
...
@@ -256,7 +256,7 @@
!
setname
0
x3fb7
事龙人
!
setname
0
xfb8
水歌
!
setname
0
x9fb8
水歌 大三角
!
setname
0
x
fb9
炫灵姬
!
setname
0
x
3fb9
炫灵姬
!
setname
0
xfba
LA
!
setname
0
x1fba
LA
Da
''
ath
!
setname
0
x2fba
LA
SG
...
...
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