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
37438990
Commit
37438990
authored
Apr 06, 2020
by
TanakaKotoha
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
amd yes
parent
603b5d2b
Changes
7
Hide whitespace changes
Inline
Side-by-side
Showing
7 changed files
with
34 additions
and
4 deletions
+34
-4
expansions/222DIY.cdb
expansions/222DIY.cdb
+0
-0
expansions/pics/65050131.jpg
expansions/pics/65050131.jpg
+0
-0
expansions/script/c10220021.lua
expansions/script/c10220021.lua
+1
-1
expansions/script/c10220031.lua
expansions/script/c10220031.lua
+2
-2
expansions/script/c65010516.lua
expansions/script/c65010516.lua
+4
-0
expansions/script/c81005004.lua
expansions/script/c81005004.lua
+13
-0
expansions/script/c81011026.lua
expansions/script/c81011026.lua
+14
-1
No files found.
expansions/222DIY.cdb
View file @
37438990
No preview for this file type
expansions/pics/65050131.jpg
View replaced file @
603b5d2b
View file @
37438990
47.8 KB
|
W:
|
H:
45.9 KB
|
W:
|
H:
2-up
Swipe
Onion skin
expansions/script/c10220021.lua
View file @
37438990
...
...
@@ -31,7 +31,7 @@ function c10220021.spcon(e,c)
if
c
==
nil
then
return
true
end
local
tp
=
c
:
GetControler
()
return
Duel
.
GetLocationCount
(
c
:
GetControler
(),
LOCATION_MZONE
)
>
0
and
Duel
.
IsExistingMatchingCard
(
c10220021
.
filter
,
c
:
GetControler
(),
LOCATION_MZONE
,
0
,
1
,
nil
)
and
Duel
.
IsExistingMatchingCard
(
c10220021
.
c
filter
,
c
:
GetControler
(),
LOCATION_MZONE
,
0
,
1
,
nil
)
end
function
c10220021
.
filter
(
c
)
...
...
expansions/script/c10220031.lua
View file @
37438990
--SAO 驯兽师 西莉卡
function
c10220031
.
initial_effect
(
c
)
--special summon rule
--special summon rule
local
e1
=
Effect
.
CreateEffect
(
c
)
e1
:
SetType
(
EFFECT_TYPE_FIELD
)
e1
:
SetCode
(
EFFECT_SPSUMMON_PROC
)
...
...
@@ -32,7 +32,7 @@ function c10220031.spcon(e,c)
if
c
==
nil
then
return
true
end
local
tp
=
c
:
GetControler
()
return
Duel
.
GetLocationCount
(
c
:
GetControler
(),
LOCATION_MZONE
)
>
0
and
Duel
.
IsExistingMatchingCard
(
c10220031
.
filter
,
c
:
GetControler
(),
LOCATION_MZONE
,
0
,
1
,
nil
)
and
Duel
.
IsExistingMatchingCard
(
c10220031
.
c
filter
,
c
:
GetControler
(),
LOCATION_MZONE
,
0
,
1
,
nil
)
end
function
c10220031
.
thcfilter
(
c
)
...
...
expansions/script/c65010516.lua
View file @
37438990
...
...
@@ -28,6 +28,10 @@ c65010516.setname="URBEX"
function
c65010516
.
lcfil
(
c
)
return
c
.
setname
==
"URBEX"
end
function
c65010516
.
lcheck
(
g
)
return
g
:
IsExists
(
c65010516
.
lcfil
,
1
,
nil
)
end
function
c65010516
.
rmcost
(
e
,
tp
,
eg
,
ep
,
ev
,
re
,
r
,
rp
,
chk
)
if
chk
==
0
then
return
e
:
GetHandler
():
IsAbleToRemoveAsCost
()
and
Duel
.
IsExistingMatchingCard
(
Card
.
IsAbleToRemoveAsCost
,
tp
,
LOCATION_EXTRA
,
0
,
2
,
nil
)
end
Duel
.
Remove
(
e
:
GetHandler
(),
POS_FACEUP
,
REASON_COST
)
...
...
expansions/script/c81005004.lua
View file @
37438990
...
...
@@ -5,6 +5,13 @@ function cm.initial_effect(c)
--link summon
c
:
EnableReviveLimit
()
aux
.
AddLinkProcedure
(
c
,
cm
.
matfilter
,
1
)
--spsummon bgm
local
e0
=
Effect
.
CreateEffect
(
c
)
e0
:
SetType
(
EFFECT_TYPE_SINGLE
+
EFFECT_TYPE_CONTINUOUS
)
e0
:
SetCode
(
EVENT_SPSUMMON_SUCCESS
)
e0
:
SetCondition
(
cm
.
sumcon
)
e0
:
SetOperation
(
cm
.
sumsuc
)
c
:
RegisterEffect
(
e0
)
--search
local
e1
=
Effect
.
CreateEffect
(
c
)
e1
:
SetDescription
(
aux
.
Stringid
(
m
,
0
))
...
...
@@ -34,6 +41,12 @@ end
function
cm
.
matfilter
(
c
)
return
c
:
IsLevel
(
1
)
and
not
c
:
IsLinkType
(
TYPE_TOKEN
)
and
c
:
IsAttack
(
500
)
end
function
cm
.
sumcon
(
e
,
tp
,
eg
,
ep
,
ev
,
re
,
r
,
rp
)
return
e
:
GetHandler
():
IsSummonType
(
SUMMON_TYPE_LINK
)
end
function
cm
.
sumsuc
(
e
,
tp
,
eg
,
ep
,
ev
,
re
,
r
,
rp
)
Duel
.
Hint
(
HINT_MUSIC
,
0
,
aux
.
Stringid
(
81011003
,
0
))
end
function
cm
.
thcon
(
e
,
tp
,
eg
,
ep
,
ev
,
re
,
r
,
rp
)
return
e
:
GetHandler
():
IsSummonType
(
SUMMON_TYPE_LINK
)
end
...
...
expansions/script/c81011026.lua
View file @
37438990
...
...
@@ -3,7 +3,14 @@ function c81011026.initial_effect(c)
--link summon
aux
.
AddLinkProcedure
(
c
,
nil
,
2
,
99
,
c81011026
.
lcheck
)
c
:
EnableReviveLimit
()
--position
--spsummon bgm
local
e0
=
Effect
.
CreateEffect
(
c
)
e0
:
SetType
(
EFFECT_TYPE_SINGLE
+
EFFECT_TYPE_CONTINUOUS
)
e0
:
SetCode
(
EVENT_SPSUMMON_SUCCESS
)
e0
:
SetCondition
(
c81011026
.
sumcon
)
e0
:
SetOperation
(
c81011026
.
sumsuc
)
c
:
RegisterEffect
(
e0
)
--position
local
e1
=
Effect
.
CreateEffect
(
c
)
e1
:
SetDescription
(
aux
.
Stringid
(
81011026
,
0
))
e1
:
SetCategory
(
CATEGORY_POSITION
)
...
...
@@ -31,6 +38,12 @@ end
function
c81011026
.
lcheck
(
g
,
lc
)
return
g
:
IsExists
(
Card
.
IsType
,
1
,
nil
,
TYPE_FLIP
)
end
function
c81011026
.
sumcon
(
e
,
tp
,
eg
,
ep
,
ev
,
re
,
r
,
rp
)
return
e
:
GetHandler
():
IsSummonType
(
SUMMON_TYPE_LINK
)
end
function
c81011026
.
sumsuc
(
e
,
tp
,
eg
,
ep
,
ev
,
re
,
r
,
rp
)
Duel
.
Hint
(
HINT_MUSIC
,
0
,
aux
.
Stringid
(
81011003
,
0
))
end
function
c81011026
.
setfilter
(
c
)
return
c
:
IsFaceup
()
and
c
:
IsCanTurnSet
()
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