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
ca1e8ca2
Commit
ca1e8ca2
authored
May 26, 2020
by
TanakaKotoha
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
nanodesu
parent
d99f05bd
Changes
5
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
5 additions
and
37 deletions
+5
-37
expansions/pics/53798001.jpg
expansions/pics/53798001.jpg
+0
-0
expansions/pics/53798002.jpg
expansions/pics/53798002.jpg
+0
-0
expansions/pics/53799041.jpg
expansions/pics/53799041.jpg
+0
-0
expansions/script/c65030055.lua
expansions/script/c65030055.lua
+5
-30
expansions/script/c65030065.lua
expansions/script/c65030065.lua
+0
-7
No files found.
expansions/pics/53798001.jpg
0 → 100644
View file @
ca1e8ca2
44.7 KB
expansions/pics/53798002.jpg
0 → 100644
View file @
ca1e8ca2
44.7 KB
expansions/pics/53799041.jpg
0 → 100644
View file @
ca1e8ca2
51.9 KB
expansions/script/c65030055.lua
View file @
ca1e8ca2
...
...
@@ -51,46 +51,21 @@ function c65030055.matfilter(c)
return
c
:
IsFaceup
()
and
c
:
IsSetCard
(
0x6da2
)
end
function
c65030055
.
lkfilter
(
c
,
tuc
)
return
c
:
IsType
(
TYPE_SYNCHRO
)
and
c
:
IsSynchroSummonable
(
tuc
)
return
c
:
IsType
(
TYPE_SYNCHRO
)
and
c
:
IsSynchroSummonable
(
tuc
,
mg
)
end
function
c65030055
.
thcon
(
e
,
tp
,
eg
,
ep
,
ev
,
re
,
r
,
rp
)
local
el
=
{}
local
mg
=
Duel
.
GetMatchingGroup
(
c65030055
.
matfilter
,
tp
,
LOCATION_MZONE
,
0
,
nil
)
local
g
=
Duel
.
GetMatchingGroup
(
Card
.
IsFaceup
,
tp
,
LOCATION_MZONE
,
0
,
mg
)
for
tc
in
aux
.
Next
(
g
)
do
local
e1
=
Effect
.
CreateEffect
(
e
:
GetHandler
())
e1
:
SetType
(
EFFECT_TYPE_SINGLE
)
e1
:
SetCode
(
EFFECT_CANNOT_BE_SYNCHRO_MATERIAL
)
tc
:
RegisterEffect
(
e1
)
table.insert
(
el
,
e1
)
end
local
res
=
Duel
.
IsExistingMatchingCard
(
c65030055
.
lkfilter
,
tp
,
LOCATION_EXTRA
,
0
,
1
,
nil
,
e
:
GetHandler
())
for
_
,
e
in
ipairs
(
el
)
do
e
:
Reset
()
end
return
res
local
mg
=
Duel
.
GetMatchingGroup
(
Card
.
IsSetCard
,
tp
,
LOCATION_MZONE
,
0
,
nil
,
0x6da2
)
return
Duel
.
IsExistingMatchingCard
(
Card
.
IsSynchroSummonable
,
tp
,
LOCATION_EXTRA
,
0
,
1
,
nil
,
e
:
GetHandler
(),
mg
)
end
function
c65030055
.
thop
(
e
,
tp
,
eg
,
ep
,
ev
,
re
,
r
,
rp
)
Duel
.
Hint
(
HINT_CARD
,
0
,
65030055
)
local
c
=
e
:
GetHandler
()
if
not
c
:
IsControler
(
tp
)
and
c
:
IsLocation
(
LOCATION_MZONE
)
then
return
end
local
el
=
{}
local
mg
=
Duel
.
GetMatchingGroup
(
c65030055
.
matfilter
,
tp
,
LOCATION_MZONE
,
0
,
nil
)
local
g
=
Duel
.
GetMatchingGroup
(
Card
.
IsFaceup
,
tp
,
LOCATION_MZONE
,
0
,
mg
)
for
tc
in
aux
.
Next
(
g
)
do
local
e1
=
Effect
.
CreateEffect
(
c
)
e1
:
SetType
(
EFFECT_TYPE_SINGLE
)
e1
:
SetCode
(
EFFECT_CANNOT_BE_SYNCHRO_MATERIAL
)
tc
:
RegisterEffect
(
e1
)
table.insert
(
el
,
e1
)
end
local
xg
=
Duel
.
GetMatchingGroup
(
Card
.
IsSynchroSummonable
,
tp
,
LOCATION_EXTRA
,
0
,
nil
,
c
)
local
mg
=
Duel
.
GetMatchingGroup
(
Card
.
IsSetCard
,
tp
,
LOCATION_MZONE
,
0
,
nil
,
0x6da2
)
local
xg
=
Duel
.
GetMatchingGroup
(
Card
.
IsSynchroSummonable
,
tp
,
LOCATION_EXTRA
,
0
,
1
,
nil
,
c
,
mg
)
if
xg
:
GetCount
()
>
0
then
Duel
.
Hint
(
HINT_SELECTMSG
,
tp
,
HINTMSG_SPSUMMON
)
local
sg
=
xg
:
Select
(
tp
,
1
,
1
,
nil
)
Duel
.
SynchroSummon
(
tp
,
sg
:
GetFirst
(),
c
)
end
for
_
,
e
in
ipairs
(
el
)
do
e
:
Reset
()
end
end
\ No newline at end of file
expansions/script/c65030065.lua
View file @
ca1e8ca2
...
...
@@ -28,13 +28,6 @@ function c65030065.regop(e,tp,eg,ep,ev,re,r,rp)
e1
:
SetTarget
(
c65030065
.
e1tg
)
e1
:
SetValue
(
500
)
c
:
RegisterEffect
(
e1
)
local
e2
=
e1
:
Clone
()
e2
:
SetCode
(
EFFECT_INDESTRUCTABLE_BATTLE
)
e2
:
SetValue
(
1
)
c
:
RegisterEffect
(
e2
)
local
e4
=
e2
:
Clone
()
e4
:
SetCode
(
EFFECT_INDESTRUCTABLE_EFFECT
)
c
:
RegisterEffect
(
e4
)
c
:
RegisterFlagEffect
(
0
,
RESET_EVENT
+
EVENT_LEAVE_FIELD_P
,
EFFECT_FLAG_CLIENT_HINT
,
1
,
0
,
aux
.
Stringid
(
65030065
,
0
))
end
if
ct
>=
3
then
...
...
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