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
Nguyễn Anh Kiệt
ygopro-222DIY-cards
Commits
1765f472
Commit
1765f472
authored
Jul 22, 2024
by
聖園ミカ
🐟
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
byd
parent
2554025f
Changes
7
Hide whitespace changes
Inline
Side-by-side
Showing
7 changed files
with
9 additions
and
4 deletions
+9
-4
expansions/pics/50223260.jpg
expansions/pics/50223260.jpg
+0
-0
expansions/pics/50223510.jpg
expansions/pics/50223510.jpg
+0
-0
expansions/pics/field/50224615.jpg
expansions/pics/field/50224615.jpg
+0
-0
expansions/script/c16362010.lua
expansions/script/c16362010.lua
+1
-1
expansions/script/c16362014.lua
expansions/script/c16362014.lua
+5
-0
expansions/script/c16362018.lua
expansions/script/c16362018.lua
+2
-2
expansions/script/c16362070.lua
expansions/script/c16362070.lua
+1
-1
No files found.
expansions/pics/50223260.jpg
View replaced file @
2554025f
View file @
1765f472
92.5 KB
|
W:
|
H:
92 KB
|
W:
|
H:
2-up
Swipe
Onion skin
expansions/pics/50223510.jpg
View replaced file @
2554025f
View file @
1765f472
34.2 KB
|
W:
|
H:
105 KB
|
W:
|
H:
2-up
Swipe
Onion skin
expansions/pics/field/50224615.jpg
0 → 100644
View file @
1765f472
67.8 KB
expansions/script/c16362010.lua
View file @
1765f472
...
...
@@ -2,7 +2,7 @@
function
c16362010
.
initial_effect
(
c
)
--SpecialSummon
local
e1
=
Effect
.
CreateEffect
(
c
)
e1
:
SetCategory
(
CATEGORY_
TOHAND
+
CATEGORY_SEARCH
)
e1
:
SetCategory
(
CATEGORY_
SPECIAL_SUMMON
)
e1
:
SetType
(
EFFECT_TYPE_TRIGGER_O
+
EFFECT_TYPE_SINGLE
)
e1
:
SetCode
(
EVENT_SUMMON_SUCCESS
)
e1
:
SetProperty
(
EFFECT_FLAG_DELAY
)
...
...
expansions/script/c16362014.lua
View file @
1765f472
...
...
@@ -17,6 +17,7 @@ function c16362014.initial_effect(c)
e2
:
SetType
(
EFFECT_TYPE_IGNITION
)
e2
:
SetRange
(
LOCATION_MZONE
)
e2
:
SetCountLimit
(
1
,
16362114
)
e2
:
SetCost
(
c16362014
.
cost
)
e2
:
SetTarget
(
c16362014
.
target
)
e2
:
SetOperation
(
c16362014
.
operation
)
c
:
RegisterEffect
(
e2
)
...
...
@@ -53,6 +54,10 @@ function c16362014.thop(e,tp,eg,ep,ev,re,r,rp)
Duel
.
ConfirmCards
(
1
-
tp
,
g
)
end
end
function
c16362014
.
cost
(
e
,
tp
,
eg
,
ep
,
ev
,
re
,
r
,
rp
,
chk
)
if
chk
==
0
then
return
Duel
.
IsExistingMatchingCard
(
Card
.
IsDiscardable
,
tp
,
LOCATION_HAND
,
0
,
1
,
nil
)
end
Duel
.
DiscardHand
(
tp
,
Card
.
IsDiscardable
,
1
,
1
,
REASON_COST
+
REASON_DISCARD
)
end
function
c16362014
.
pfilter
(
c
,
tp
)
return
c
:
IsType
(
TYPE_CONTINUOUS
)
and
c
:
IsType
(
TYPE_SPELL
)
and
c
:
IsSetCard
(
0xdc0
)
and
not
c
:
IsForbidden
()
and
c
:
CheckUniqueOnField
(
tp
)
...
...
expansions/script/c16362018.lua
View file @
1765f472
...
...
@@ -13,7 +13,7 @@ function c16362018.initial_effect(c)
local
e1
=
Effect
.
CreateEffect
(
c
)
e1
:
SetType
(
EFFECT_TYPE_FIELD
)
e1
:
SetCode
(
EFFECT_IMMUNE_EFFECT
)
e1
:
SetRange
(
LOCATION_
S
ZONE
)
e1
:
SetRange
(
LOCATION_
M
ZONE
)
e1
:
SetTargetRange
(
LOCATION_MZONE
,
0
)
e1
:
SetTarget
(
aux
.
TargetBoolFunction
(
Card
.
IsSetCard
,
0xdc0
))
e1
:
SetValue
(
c16362018
.
efilter
)
...
...
@@ -46,7 +46,7 @@ function c16362018.mfilter(c)
end
function
c16362018
.
efilter
(
e
,
te
)
return
te
:
GetOwnerPlayer
()
~=
e
:
GetHandlerPlayer
()
and
te
:
IsActiveType
(
TYPE_MONSTER
)
and
te
:
GetHandler
():
IsLocation
(
LOCATION_MZONE
)
and
te
:
GetHandler
():
IsType
(
TYPE_SYNCHRO
)
and
te
:
GetHandler
():
IsLocation
(
LOCATION_MZONE
)
and
not
te
:
GetHandler
():
IsType
(
TYPE_SYNCHRO
)
end
function
c16362018
.
drcon
(
e
,
tp
,
eg
,
ep
,
ev
,
re
,
r
,
rp
)
return
e
:
GetHandler
():
IsSummonType
(
SUMMON_TYPE_SYNCHRO
)
...
...
expansions/script/c16362070.lua
View file @
1765f472
...
...
@@ -16,7 +16,7 @@ function c16362070.initial_effect(c)
e2
:
SetCategory
(
CATEGORY_TODECK
+
CATEGORY_SPECIAL_SUMMON
+
CATEGORY_FUSION_SUMMON
)
e2
:
SetType
(
EFFECT_TYPE_ACTIVATE
)
e2
:
SetCode
(
EVENT_FREE_CHAIN
)
e
1
:
SetCountLimit
(
1
,
16362070
)
e
2
:
SetCountLimit
(
1
,
16362070
)
e2
:
SetTarget
(
c16362070
.
target
)
e2
:
SetOperation
(
c16362070
.
activate
)
c
:
RegisterEffect
(
e2
)
...
...
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