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
59d22903
Commit
59d22903
authored
Sep 02, 2024
by
聖園ミカ
🐟
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
byd
parent
27a28400
Changes
6
Hide whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
15 additions
and
7 deletions
+15
-7
expansions/script/c16138019.lua
expansions/script/c16138019.lua
+4
-3
expansions/script/c16138025.lua
expansions/script/c16138025.lua
+1
-1
expansions/script/c31300022.lua
expansions/script/c31300022.lua
+2
-1
expansions/script/c31300051.lua
expansions/script/c31300051.lua
+5
-1
expansions/script/c96071064.lua
expansions/script/c96071064.lua
+1
-0
expansions/script/c96071066.lua
expansions/script/c96071066.lua
+2
-1
No files found.
expansions/script/c16138019.lua
View file @
59d22903
...
...
@@ -105,16 +105,17 @@ end
function
s
.
setfilter
(
c
,
code
)
return
aux
.
IsCodeListed
(
c
,
code
)
and
c
:
IsType
(
TYPE_TRAP
+
TYPE_SPELL
)
and
c
:
IsSSetable
()
and
(
not
c
:
IsLocation
(
LOCATION_REMOVED
)
or
c
:
IsFaceup
())
end
function
s
.
settg
(
e
,
tp
,
eg
,
ep
,
ev
,
re
,
r
,
rp
,
chk
)
function
s
.
settg
(
e
,
tp
,
eg
,
ep
,
ev
,
re
,
r
,
rp
,
chk
,
chkc
)
if
chkc
then
return
s
.
tgcheck
(
chkc
,
tp
)
and
chkc
:
IsLocation
(
LOCATION_MZONE
)
and
chkc
:
IsControler
(
tp
)
end
if
chk
==
0
then
return
Duel
.
IsExistingTarget
(
s
.
tgcheck
,
tp
,
LOCATION_MZONE
,
0
,
1
,
nil
,
tp
)
end
Duel
.
Hint
(
HINT_SELECTMSG
,
tp
,
HINTMSG_TARGET
)
Duel
.
SelectTarget
(
tp
,
s
.
tgcheck
,
tp
,
LOCATION_MZONE
,
0
,
1
,
1
,
nil
,
tp
)
end
function
s
.
setop
(
e
,
tp
,
eg
,
ep
,
ev
,
re
,
r
,
rp
)
local
tc
=
Duel
.
GetFirstTarget
()
if
not
tc
:
IsRelateToEffect
(
e
)
or
not
tc
:
IsFaceup
(
)
then
return
end
if
not
(
tc
:
IsRelateToEffect
(
e
)
and
tc
:
IsFaceup
()
)
then
return
end
Duel
.
Hint
(
HINT_SELECTMSG
,
tp
,
HINTMSG_SET
)
local
g
=
Duel
.
SelectMatchingCard
(
tp
,
aux
.
NecroValleyFilter
(
s
.
setfilter
),
tp
,
LOCATION_DECK
+
LOCATION_HAND
+
LOCATION_GRAVE
+
LOCATION_REMOVED
,
0
,
1
,
1
,
nil
)
local
g
=
Duel
.
SelectMatchingCard
(
tp
,
aux
.
NecroValleyFilter
(
s
.
setfilter
),
tp
,
LOCATION_DECK
+
LOCATION_HAND
+
LOCATION_GRAVE
+
LOCATION_REMOVED
,
0
,
1
,
1
,
nil
,
tc
:
GetCode
()
)
if
g
:
GetCount
()
>
0
then
Duel
.
SSet
(
tp
,
g
)
end
...
...
expansions/script/c16138025.lua
View file @
59d22903
...
...
@@ -87,7 +87,7 @@ function s.operation(e,tp,eg,ep,ev,re,r,rp)
if
Duel
.
SpecialSummon
(
c
,
0
,
tp
,
tp
,
false
,
false
,
POS_FACEUP
,
zone
)
then
Duel
.
BreakEffect
()
local
g
=
c
:
GetColumnGroup
()
local
dg
=
g
:
Filter
(
s
.
decheck
,
nil
,
1
-
tp
)
local
dg
=
g
:
Filter
(
s
.
cfilter
,
nil
,
1
-
tp
)
if
Duel
.
Destroy
(
dg
,
REASON_EFFECT
)
>
0
then
local
og
=
Duel
.
GetOperatedGroup
()
local
tc
=
og
:
GetFirst
()
...
...
expansions/script/c31300022.lua
View file @
59d22903
...
...
@@ -28,7 +28,8 @@ function s.specialsum(c)
c
:
RegisterEffect
(
e2
)
end
function
s
.
spcon2
(
e
,
tp
,
eg
,
ep
,
ev
,
re
,
r
,
rp
)
return
bit
.
band
(
r
,
REASON_EFFECT
+
REASON_BATTLE
)
~=
0
and
e
:
GetHandler
():
IsPreviousLocation
(
LOCATION_ONFIELD
)
local
c
=
e
:
GetHandler
()
return
bit
.
band
(
r
,
REASON_EFFECT
+
REASON_BATTLE
)
~=
0
and
c
:
IsPreviousLocation
(
LOCATION_ONFIELD
)
and
c
:
GetFlagEffect
(
id
)
==
0
end
function
s
.
spfilter
(
c
,
e
,
tp
)
...
...
expansions/script/c31300051.lua
View file @
59d22903
...
...
@@ -13,8 +13,9 @@ function s.searchcard(c)
e1
:
SetCategory
(
CATEGORY_SEARCH
+
CATEGORY_TOHAND
)
e1
:
SetType
(
EFFECT_TYPE_SINGLE
+
EFFECT_TYPE_TRIGGER_F
)
e1
:
SetCode
(
EVENT_SUMMON_SUCCESS
)
e1
:
SetCountLimit
(
1
,
id
)
e1
:
SetCountLimit
(
1
,
id
+
114
)
e1
:
SetProperty
(
EFFECT_FLAG_DELAY
)
e1
:
SetCondition
(
s
.
seacon
)
e1
:
SetTarget
(
s
.
seatg
)
e1
:
SetOperation
(
s
.
seaop
)
c
:
RegisterEffect
(
e1
)
...
...
@@ -22,6 +23,9 @@ function s.searchcard(c)
e2
:
SetCode
(
EVENT_SPSUMMON_SUCCESS
)
c
:
RegisterEffect
(
e2
)
end
function
s
.
seacon
(
e
,
tp
,
eg
,
ep
,
ev
,
re
,
r
,
rp
)
return
Duel
.
GetFlagEffect
(
tp
,
id
)
~=
0
end
function
s
.
searchfilter
(
c
)
return
c
:
IsRace
(
RACE_ROCK
)
and
c
:
IsLevel
(
1
)
and
c
:
IsAbleToHand
()
end
...
...
expansions/script/c96071064.lua
View file @
59d22903
...
...
@@ -117,6 +117,7 @@ function cm.actcon(e)
end
--recover/damage
function
cm
.
gabcon
(
e
,
tp
,
eg
,
ep
,
ev
,
re
,
r
,
rp
)
local
c
=
e
:
GetHandler
()
return
re
and
c
:
IsSetCard
(
0xef1
)
end
function
cm
.
gabtg
(
e
,
tp
,
eg
,
ep
,
ev
,
re
,
r
,
rp
,
chk
)
...
...
expansions/script/c96071066.lua
View file @
59d22903
...
...
@@ -54,7 +54,7 @@ function cm.synlimit(e,c)
end
--special summon
function
cm
.
descfilter
(
c
)
return
c
:
IsSetCard
(
0xef1
)
and
c
:
IsType
(
TYPE_MONSTER
)
and
not
c
:
IsPublic
()
return
c
:
IsSetCard
(
0xef1
)
and
not
c
:
IsPublic
()
end
function
cm
.
spcost
(
e
,
tp
,
eg
,
ep
,
ev
,
re
,
r
,
rp
,
chk
)
if
chk
==
0
then
return
Duel
.
IsExistingMatchingCard
(
cm
.
descfilter
,
tp
,
LOCATION_HAND
,
0
,
1
,
nil
)
end
...
...
@@ -111,6 +111,7 @@ function cm.splimit(e,c)
end
--special summon/to hand
function
cm
.
stpcon
(
e
,
tp
,
eg
,
ep
,
ev
,
re
,
r
,
rp
)
local
c
=
e
:
GetHandler
()
return
re
and
c
:
IsSetCard
(
0xef1
)
end
function
cm
.
stpfilter
(
c
,
e
,
tp
,
ft
)
...
...
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