Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Sign in / Register
Toggle navigation
no81cards
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
Nemo Ma
no81cards
Commits
60689e31
Commit
60689e31
authored
Mar 20, 2025
by
POLYMER
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
fix
parent
4d3dc734
Changes
6
Hide whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
14 additions
and
9 deletions
+14
-9
expansions/script/c11451012.lua
expansions/script/c11451012.lua
+1
-1
expansions/script/c11902060.lua
expansions/script/c11902060.lua
+1
-0
expansions/script/c11902070.lua
expansions/script/c11902070.lua
+6
-2
expansions/script/c21692416.lua
expansions/script/c21692416.lua
+2
-2
expansions/script/c21692418.lua
expansions/script/c21692418.lua
+3
-3
expansions/script/c44401003.lua
expansions/script/c44401003.lua
+1
-1
No files found.
expansions/script/c11451012.lua
View file @
60689e31
...
@@ -357,7 +357,7 @@ function cm.sptg(e,tp,eg,ep,ev,re,r,rp,chk)
...
@@ -357,7 +357,7 @@ function cm.sptg(e,tp,eg,ep,ev,re,r,rp,chk)
Duel
.
SetOperationInfo
(
0
,
CATEGORY_TODECK
,
nil
,
1
,
tp
,
LOCATION_GRAVE
+
LOCATION_REMOVED
)
Duel
.
SetOperationInfo
(
0
,
CATEGORY_TODECK
,
nil
,
1
,
tp
,
LOCATION_GRAVE
+
LOCATION_REMOVED
)
end
end
function
cm
.
spop
(
e
,
tp
,
eg
,
ep
,
ev
,
re
,
r
,
rp
)
function
cm
.
spop
(
e
,
tp
,
eg
,
ep
,
ev
,
re
,
r
,
rp
)
Duel
.
Hint
(
HINT_SELECTMSG
,
tp
,
HINTMSG_
RTOHAND
)
Duel
.
Hint
(
HINT_SELECTMSG
,
tp
,
HINTMSG_
TODECK
)
local
g
=
Duel
.
SelectMatchingCard
(
tp
,
aux
.
NecroValleyFilter
(
cm
.
thfilter2
),
tp
,
LOCATION_GRAVE
+
LOCATION_REMOVED
,
0
,
1
,
1
,
nil
)
local
g
=
Duel
.
SelectMatchingCard
(
tp
,
aux
.
NecroValleyFilter
(
cm
.
thfilter2
),
tp
,
LOCATION_GRAVE
+
LOCATION_REMOVED
,
0
,
1
,
1
,
nil
)
if
#
g
>
0
then
if
#
g
>
0
then
Duel
.
SendtoDeck
(
g
,
nil
,
2
,
REASON_EFFECT
)
Duel
.
SendtoDeck
(
g
,
nil
,
2
,
REASON_EFFECT
)
...
...
expansions/script/c11902060.lua
View file @
60689e31
...
@@ -87,6 +87,7 @@ function s.spop(e,tp,eg,ep,ev,re,r,rp)
...
@@ -87,6 +87,7 @@ function s.spop(e,tp,eg,ep,ev,re,r,rp)
end
end
end
end
if
res
and
Duel
.
SelectYesNo
(
tp
,
aux
.
Stringid
(
id
,
4
))
then
if
res
and
Duel
.
SelectYesNo
(
tp
,
aux
.
Stringid
(
id
,
4
))
then
Duel
.
BreakEffect
()
s
.
fusion
(
e
,
tp
,
eg
,
ep
,
ev
,
re
,
r
,
rp
)
s
.
fusion
(
e
,
tp
,
eg
,
ep
,
ev
,
re
,
r
,
rp
)
end
end
end
end
...
...
expansions/script/c11902070.lua
View file @
60689e31
...
@@ -31,11 +31,14 @@ function s.initial_effect(c)
...
@@ -31,11 +31,14 @@ function s.initial_effect(c)
e2
:
SetOperation
(
s
.
spop
)
e2
:
SetOperation
(
s
.
spop
)
c
:
RegisterEffect
(
e2
)
c
:
RegisterEffect
(
e2
)
end
end
function
s
.
rgfilter
(
c
)
return
c
:
IsFaceup
()
and
c
:
IsType
(
TYPE_MONSTER
)
end
function
s
.
rgtg
(
e
,
tp
,
eg
,
ep
,
ev
,
re
,
r
,
rp
,
chk
,
chkc
)
function
s
.
rgtg
(
e
,
tp
,
eg
,
ep
,
ev
,
re
,
r
,
rp
,
chk
,
chkc
)
if
chkc
then
return
chkc
:
IsControler
(
tp
)
and
chkc
:
IsLocation
(
0x20
)
end
if
chkc
then
return
chkc
:
IsControler
(
tp
)
and
chkc
:
IsLocation
(
0x20
)
end
if
chk
==
0
then
return
Duel
.
IsExistingTarget
(
Card
.
IsType
,
tp
,
0x20
,
0x20
,
1
,
nil
,
TYPE_MONSTER
)
end
if
chk
==
0
then
return
Duel
.
IsExistingTarget
(
s
.
rgfilter
,
tp
,
0x20
,
0x20
,
1
,
nil
)
end
Duel
.
Hint
(
3
,
tp
,
504
)
Duel
.
Hint
(
3
,
tp
,
504
)
local
g
=
Duel
.
SelectTarget
(
tp
,
Card
.
IsType
,
tp
,
0x20
,
0x20
,
1
,
1
,
nil
,
TYPE_MONSTER
)
local
g
=
Duel
.
SelectTarget
(
tp
,
s
.
rgfilter
,
tp
,
0x20
,
0x20
,
1
,
1
,
nil
,
TYPE_MONSTER
)
end
end
function
s
.
rgop
(
e
,
tp
,
eg
,
ep
,
ev
,
re
,
r
,
rp
)
function
s
.
rgop
(
e
,
tp
,
eg
,
ep
,
ev
,
re
,
r
,
rp
)
local
tc
=
Duel
.
GetFirstTarget
()
local
tc
=
Duel
.
GetFirstTarget
()
...
@@ -79,6 +82,7 @@ function s.spop(e,tp,eg,ep,ev,re,r,rp)
...
@@ -79,6 +82,7 @@ function s.spop(e,tp,eg,ep,ev,re,r,rp)
end
end
end
end
if
res
and
Duel
.
SelectYesNo
(
tp
,
aux
.
Stringid
(
id
,
2
))
then
if
res
and
Duel
.
SelectYesNo
(
tp
,
aux
.
Stringid
(
id
,
2
))
then
Duel
.
BreakEffect
()
s
.
fusion
(
e
,
tp
,
eg
,
ep
,
ev
,
re
,
r
,
rp
)
s
.
fusion
(
e
,
tp
,
eg
,
ep
,
ev
,
re
,
r
,
rp
)
end
end
end
end
...
...
expansions/script/c21692416.lua
View file @
60689e31
...
@@ -5,7 +5,7 @@ function c21692416.initial_effect(c)
...
@@ -5,7 +5,7 @@ function c21692416.initial_effect(c)
e1
:
SetType
(
EFFECT_TYPE_FIELD
)
e1
:
SetType
(
EFFECT_TYPE_FIELD
)
e1
:
SetCode
(
EFFECT_SPSUMMON_PROC
)
e1
:
SetCode
(
EFFECT_SPSUMMON_PROC
)
e1
:
SetProperty
(
EFFECT_FLAG_UNCOPYABLE
)
e1
:
SetProperty
(
EFFECT_FLAG_UNCOPYABLE
)
e1
:
SetRange
(
LOCATION_
HAND
)
e1
:
SetRange
(
LOCATION_
GRAVE
)
e1
:
SetCountLimit
(
1
,
21692416
+
EFFECT_COUNT_CODE_OATH
)
e1
:
SetCountLimit
(
1
,
21692416
+
EFFECT_COUNT_CODE_OATH
)
e1
:
SetCondition
(
c21692416
.
hspcon
)
e1
:
SetCondition
(
c21692416
.
hspcon
)
e1
:
SetOperation
(
c21692416
.
hspop
)
e1
:
SetOperation
(
c21692416
.
hspop
)
...
@@ -45,7 +45,7 @@ function c21692416.hspcon(e,c)
...
@@ -45,7 +45,7 @@ function c21692416.hspcon(e,c)
end
end
function
c21692416
.
hspop
(
e
,
tp
,
eg
,
ep
,
ev
,
re
,
r
,
rp
,
c
)
function
c21692416
.
hspop
(
e
,
tp
,
eg
,
ep
,
ev
,
re
,
r
,
rp
,
c
)
local
ft
=
Duel
.
GetLocationCount
(
tp
,
LOCATION_MZONE
)
local
ft
=
Duel
.
GetLocationCount
(
tp
,
LOCATION_MZONE
)
Duel
.
Hint
(
HINT_SELECTMSG
,
tp
,
HINTMSG_R
EMOVE
)
Duel
.
Hint
(
HINT_SELECTMSG
,
tp
,
HINTMSG_R
TOHAND
)
local
g
=
Duel
.
SelectMatchingCard
(
tp
,
c21692416
.
spfilter
,
tp
,
LOCATION_MZONE
,
0
,
1
,
1
,
nil
)
local
g
=
Duel
.
SelectMatchingCard
(
tp
,
c21692416
.
spfilter
,
tp
,
LOCATION_MZONE
,
0
,
1
,
1
,
nil
)
Duel
.
SendtoHand
(
g
,
nil
,
REASON_COST
)
Duel
.
SendtoHand
(
g
,
nil
,
REASON_COST
)
end
end
...
...
expansions/script/c21692418.lua
View file @
60689e31
...
@@ -41,18 +41,18 @@ end
...
@@ -41,18 +41,18 @@ end
c21692418
.
SetCard_ZW_ShLight
=
true
c21692418
.
SetCard_ZW_ShLight
=
true
function
c21692418
.
hspcost
(
e
,
tp
,
eg
,
ep
,
ev
,
re
,
r
,
rp
,
chk
)
function
c21692418
.
hspcost
(
e
,
tp
,
eg
,
ep
,
ev
,
re
,
r
,
rp
,
chk
)
if
chk
==
0
then
return
Duel
.
IsExistingMatchingCard
(
Card
.
IsDiscardable
,
tp
,
LOCATION_HAND
,
0
,
1
,
e
:
GetHandler
())
end
if
chk
==
0
then
return
Duel
.
IsExistingMatchingCard
(
Card
.
IsDiscardable
,
tp
,
LOCATION_HAND
,
0
,
1
,
e
:
GetHandler
())
end
Duel
.
DiscardHand
(
tp
,
Card
.
IsDiscardable
,
1
,
1
,
REASON_COST
+
REASON_DISCARD
)
Duel
.
DiscardHand
(
tp
,
Card
.
IsDiscardable
,
1
,
1
,
REASON_COST
+
REASON_DISCARD
,
e
:
GetHandler
()
)
end
end
function
c21692418
.
sthfil
(
c
,
tp
)
function
c21692418
.
sthfil
(
c
,
tp
)
return
Duel
.
GetMZoneCount
(
tp
,
c
)
>
0
and
c
:
IsFaceup
()
and
c
:
IsSetCard
(
0x555
)
and
c
:
IsAbleToHand
()
return
Duel
.
GetMZoneCount
(
tp
,
c
)
>
0
and
c
:
IsFaceup
()
and
c
:
IsSetCard
(
0x555
)
and
c
:
IsAbleToHand
()
end
end
function
c21692418
.
hsptg
(
e
,
tp
,
eg
,
ep
,
ev
,
re
,
r
,
rp
,
chk
)
function
c21692418
.
hsptg
(
e
,
tp
,
eg
,
ep
,
ev
,
re
,
r
,
rp
,
chk
)
if
chk
==
0
then
return
e
:
GetHandler
():
IsCanBeSpecialSummoned
(
e
,
0
,
tp
,
false
,
false
)
and
Duel
.
IsExistingMatchingCard
(
c21692418
.
sthfil
,
tp
,
LOCATION_
MZONE
,
LOCATION_MZONE
,
1
,
nil
,
tp
)
end
if
chk
==
0
then
return
e
:
GetHandler
():
IsCanBeSpecialSummoned
(
e
,
0
,
tp
,
false
,
false
)
and
Duel
.
IsExistingMatchingCard
(
c21692418
.
sthfil
,
tp
,
LOCATION_
ONFIELD
,
LOCATION_ONFIELD
,
1
,
nil
,
tp
)
end
Duel
.
SetOperationInfo
(
0
,
CATEGORY_SPECIAL_SUMMON
,
e
:
GetHandler
(),
1
,
0
,
0
)
Duel
.
SetOperationInfo
(
0
,
CATEGORY_SPECIAL_SUMMON
,
e
:
GetHandler
(),
1
,
0
,
0
)
end
end
function
c21692418
.
hspop
(
e
,
tp
,
eg
,
ep
,
ev
,
re
,
r
,
rp
)
function
c21692418
.
hspop
(
e
,
tp
,
eg
,
ep
,
ev
,
re
,
r
,
rp
)
local
c
=
e
:
GetHandler
()
local
c
=
e
:
GetHandler
()
local
tc
=
Duel
.
SelectMatchingCard
(
tp
,
c21692418
.
sthfil
,
tp
,
LOCATION_
MZONE
,
LOCATION_MZONE
,
1
,
1
,
nil
,
tp
):
GetFirst
()
local
tc
=
Duel
.
SelectMatchingCard
(
tp
,
c21692418
.
sthfil
,
tp
,
LOCATION_
ONFIELD
,
LOCATION_ONFIELD
,
1
,
1
,
nil
,
tp
):
GetFirst
()
if
tc
and
Duel
.
SendtoHand
(
tc
,
nil
,
REASON_EFFECT
)
~=
0
and
c
:
IsRelateToEffect
(
e
)
then
if
tc
and
Duel
.
SendtoHand
(
tc
,
nil
,
REASON_EFFECT
)
~=
0
and
c
:
IsRelateToEffect
(
e
)
then
Duel
.
SpecialSummon
(
c
,
0
,
tp
,
tp
,
false
,
false
,
POS_FACEUP
)
Duel
.
SpecialSummon
(
c
,
0
,
tp
,
tp
,
false
,
false
,
POS_FACEUP
)
end
end
...
...
expansions/script/c44401003.lua
View file @
60689e31
...
@@ -37,7 +37,7 @@ function c44401003.condition(e,tp,eg,ep,ev,re,r,rp)
...
@@ -37,7 +37,7 @@ function c44401003.condition(e,tp,eg,ep,ev,re,r,rp)
return
ph
==
PHASE_MAIN1
or
ph
==
PHASE_MAIN2
return
ph
==
PHASE_MAIN1
or
ph
==
PHASE_MAIN2
end
end
function
c44401003
.
cfilter
(
c
,
e
,
tp
,
check
)
function
c44401003
.
cfilter
(
c
,
e
,
tp
,
check
)
return
c
:
IsRace
(
RACE_PSYCHO
)
and
((
c
:
IsLocation
(
LOCATION_HAND
+
LOCATION_MZONE
)
and
c
:
IsSummonable
(
true
,
nil
))
or
(
check
and
c
:
IsLocation
(
LOCATION_DECK
+
LOCATION_REMOVED
)
and
c
:
IsFaceupEx
()
and
Duel
.
GetMZoneCount
(
tp
)
>
0
and
c
:
IsCanBeSpecialSummoned
(
e
,
0
,
tp
,
false
,
false
))
)
return
c
:
IsRace
(
RACE_PSYCHO
)
and
c
:
IsLocation
(
LOCATION_HAND
+
LOCATION_MZONE
)
and
c
:
IsSummonable
(
true
,
nil
)
or
check
and
c
:
IsSetCard
(
0xa4a
)
and
c
:
IsLocation
(
LOCATION_DECK
+
LOCATION_REMOVED
)
and
c
:
IsFaceupEx
()
and
Duel
.
GetMZoneCount
(
tp
)
>
0
and
c
:
IsCanBeSpecialSummoned
(
e
,
0
,
tp
,
false
,
false
)
end
end
function
c44401003
.
target
(
e
,
tp
,
eg
,
ep
,
ev
,
re
,
r
,
rp
,
chk
)
function
c44401003
.
target
(
e
,
tp
,
eg
,
ep
,
ev
,
re
,
r
,
rp
,
chk
)
local
c
=
e
:
GetHandler
()
local
c
=
e
:
GetHandler
()
...
...
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