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
8fa9cbfb
Commit
8fa9cbfb
authored
Jul 28, 2025
by
POLYMER
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
fix
parent
6c32dd42
Changes
5
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
69 additions
and
8 deletions
+69
-8
expansions/script/c15000298.lua
expansions/script/c15000298.lua
+6
-2
expansions/script/c95101164.lua
expansions/script/c95101164.lua
+58
-0
expansions/script/c98920160.lua
expansions/script/c98920160.lua
+2
-2
expansions/script/c98920655.lua
expansions/script/c98920655.lua
+3
-3
expansions/script/c98920700.lua
expansions/script/c98920700.lua
+0
-1
No files found.
expansions/script/c15000298.lua
View file @
8fa9cbfb
...
@@ -37,7 +37,9 @@ end
...
@@ -37,7 +37,9 @@ end
function
cm
.
valcheck
(
e
,
c
)
function
cm
.
valcheck
(
e
,
c
)
local
mg
=
c
:
GetMaterial
()
local
mg
=
c
:
GetMaterial
()
local
tc
=
mg
:
Filter
(
Card
.
IsFusionCode
,
nil
,
89943723
):
GetFirst
()
local
tc
=
mg
:
Filter
(
Card
.
IsFusionCode
,
nil
,
89943723
):
GetFirst
()
mg
:
RemoveCard
(
tc
)
if
tc
then
mg
:
RemoveCard
(
tc
)
end
if
mg
:
IsExists
(
Card
.
IsFusionSetCard
,
1
,
nil
,
0x9
)
then
if
mg
:
IsExists
(
Card
.
IsFusionSetCard
,
1
,
nil
,
0x9
)
then
c
:
RegisterFlagEffect
(
0
,
RESET_EVENT
+
RESETS_STANDARD
-
RESET_TOFIELD
,
0
,
1
)
c
:
RegisterFlagEffect
(
0
,
RESET_EVENT
+
RESETS_STANDARD
-
RESET_TOFIELD
,
0
,
1
)
end
end
...
@@ -55,7 +57,9 @@ function cm.regop(e,tp,eg,ep,ev,re,r,rp)
...
@@ -55,7 +57,9 @@ function cm.regop(e,tp,eg,ep,ev,re,r,rp)
local
c
=
e
:
GetHandler
()
local
c
=
e
:
GetHandler
()
local
mg
=
c
:
GetMaterial
()
local
mg
=
c
:
GetMaterial
()
local
tc
=
mg
:
Filter
(
Card
.
IsFusionCode
,
nil
,
89943723
):
GetFirst
()
local
tc
=
mg
:
Filter
(
Card
.
IsFusionCode
,
nil
,
89943723
):
GetFirst
()
mg
:
RemoveCard
(
tc
)
if
tc
then
mg
:
RemoveCard
(
tc
)
end
if
mg
:
IsExists
(
Card
.
IsFusionSetCard
,
1
,
nil
,
0x9
)
or
c
:
GetFlagEffect
(
0
)
~=
0
then
if
mg
:
IsExists
(
Card
.
IsFusionSetCard
,
1
,
nil
,
0x9
)
or
c
:
GetFlagEffect
(
0
)
~=
0
then
--activate limit - xinyu
--activate limit - xinyu
local
e1
=
Effect
.
CreateEffect
(
c
)
local
e1
=
Effect
.
CreateEffect
(
c
)
...
...
expansions/script/c95101164.lua
0 → 100644
View file @
8fa9cbfb
--黑之魂的拥抱
function
c95101164
.
initial_effect
(
c
)
--Activate
local
e1
=
Effect
.
CreateEffect
(
c
)
e1
:
SetCategory
(
CATEGORY_TOHAND
+
CATEGORY_SEARCH
)
e1
:
SetType
(
EFFECT_TYPE_ACTIVATE
)
e1
:
SetCode
(
EVENT_FREE_CHAIN
)
e1
:
SetCountLimit
(
1
,
95101164
)
e1
:
SetTarget
(
c95101164
.
target
)
e1
:
SetOperation
(
c95101164
.
activate
)
c
:
RegisterEffect
(
e1
)
--draw
local
e2
=
Effect
.
CreateEffect
(
c
)
e2
:
SetCategory
(
CATEGORY_DRAW
)
e2
:
SetType
(
EFFECT_TYPE_IGNITION
)
e2
:
SetRange
(
LOCATION_GRAVE
)
e2
:
SetCountLimit
(
1
,
95101164
+
1
)
e2
:
SetCost
(
aux
.
bfgcost
)
e2
:
SetTarget
(
c95101164
.
ovtg
)
e2
:
SetOperation
(
c95101164
.
ovop
)
c
:
RegisterEffect
(
e2
)
end
function
c95101164
.
thfilter
(
c
)
return
c
:
IsSetCard
(
0xbbf
)
and
c
:
IsType
(
TYPE_MONSTER
)
and
c
:
IsAbleToHand
()
end
function
c95101164
.
target
(
e
,
tp
,
eg
,
ep
,
ev
,
re
,
r
,
rp
,
chk
)
if
chk
==
0
then
return
Duel
.
IsExistingMatchingCard
(
c95101164
.
thfilter
,
tp
,
LOCATION_DECK
,
0
,
1
,
nil
)
end
Duel
.
SetOperationInfo
(
0
,
CATEGORY_TOHAND
,
nil
,
1
,
tp
,
LOCATION_DECK
)
end
function
c95101164
.
activate
(
e
,
tp
,
eg
,
ep
,
ev
,
re
,
r
,
rp
)
Duel
.
Hint
(
HINT_SELECTMSG
,
tp
,
HINTMSG_ATOHAND
)
local
tc
=
Duel
.
SelectMatchingCard
(
tp
,
c95101164
.
thfilter
,
tp
,
LOCATION_DECK
,
0
,
1
,
1
,
nil
):
GetFirst
()
if
tc
then
Duel
.
SendtoHand
(
tc
,
nil
,
REASON_EFFECT
)
Duel
.
ConfirmCards
(
1
-
tp
,
tc
)
end
end
function
c95101164
.
xfilter
(
c
)
return
c
:
IsSetCard
(
0xbbf
)
and
c
:
IsType
(
TYPE_XYZ
)
and
c
:
IsFaceup
()
end
function
c95101164
.
ovfilter
(
c
)
return
c
:
IsSetCard
(
0xbbf
)
and
c
:
IsType
(
TYPE_MONSTER
)
and
c
:
IsCanOverlay
()
end
function
c95101164
.
ovtg
(
e
,
tp
,
eg
,
ep
,
ev
,
re
,
r
,
rp
,
chk
)
if
chk
==
0
then
return
Duel
.
IsExistingMatchingCard
(
c95101164
.
xfilter
,
tp
,
LOCATION_MZONE
,
0
,
1
,
nil
)
and
Duel
.
IsExistingMatchingCard
(
c95101164
.
ovfilter
,
tp
,
LOCATION_DECK
,
0
,
1
,
nil
,
0
)
and
Duel
.
IsPlayerCanDraw
(
tp
,
1
)
end
Duel
.
SetOperationInfo
(
0
,
CATEGORY_DRAW
,
nil
,
0
,
tp
,
1
)
end
function
c95101164
.
ovop
(
e
,
tp
,
eg
,
ep
,
ev
,
re
,
r
,
rp
)
Duel
.
Hint
(
HINT_SELECTMSG
,
tp
,
HINTMSG_FACEUP
)
local
tc
=
Duel
.
SelectMatchingCard
(
tp
,
c95101164
.
xfilter
,
tp
,
LOCATION_MZONE
,
0
,
1
,
1
,
nil
):
GetFirst
()
if
not
tc
then
return
end
Duel
.
Hint
(
HINT_SELECTMSG
,
tp
,
HINTMSG_XMATERIAL
)
local
g
=
Duel
.
SelectMatchingCard
(
tp
,
c95101164
.
ovfilter
,
tp
,
LOCATION_DECK
,
0
,
1
,
1
,
nil
)
if
#
g
~=
1
then
return
end
Duel
.
Overlay
(
tc
,
g
)
Duel
.
BreakEffect
()
Duel
.
Draw
(
tp
,
1
,
REASON_EFFECT
)
end
expansions/script/c98920160.lua
View file @
8fa9cbfb
...
@@ -32,9 +32,9 @@ function c98920160.cfilter(c,e,tp)
...
@@ -32,9 +32,9 @@ function c98920160.cfilter(c,e,tp)
and
Duel
.
GetMZoneCount
(
tp
,
c
)
>
0
and
Duel
.
IsExistingMatchingCard
(
c98920160
.
filter
,
tp
,
LOCATION_EXTRA
,
0
,
1
,
nil
,
e
,
tp
,
c
:
GetCode
())
and
Duel
.
GetMZoneCount
(
tp
,
c
)
>
0
and
Duel
.
IsExistingMatchingCard
(
c98920160
.
filter
,
tp
,
LOCATION_EXTRA
,
0
,
1
,
nil
,
e
,
tp
,
c
:
GetCode
())
end
end
function
c98920160
.
cost
(
e
,
tp
,
eg
,
ep
,
ev
,
re
,
r
,
rp
,
chk
)
function
c98920160
.
cost
(
e
,
tp
,
eg
,
ep
,
ev
,
re
,
r
,
rp
,
chk
)
if
chk
==
0
then
return
Duel
.
CheckReleaseGroupEx
(
tp
,
c98920160
.
cfilter
,
1
,
nil
,
e
,
tp
)
end
if
chk
==
0
then
return
Duel
.
CheckReleaseGroupEx
(
tp
,
c98920160
.
cfilter
,
1
,
REASON_COST
,
true
,
nil
,
e
,
tp
)
end
Duel
.
Hint
(
HINT_SELECTMSG
,
tp
,
HINTMSG_RELEASE
)
Duel
.
Hint
(
HINT_SELECTMSG
,
tp
,
HINTMSG_RELEASE
)
local
g
=
Duel
.
SelectReleaseGroupEx
(
tp
,
c98920160
.
cfilter
,
1
,
1
,
nil
,
e
,
tp
)
local
g
=
Duel
.
SelectReleaseGroupEx
(
tp
,
c98920160
.
cfilter
,
1
,
1
,
REASON_COST
,
true
,
nil
,
e
,
tp
)
e
:
SetLabel
(
g
:
GetFirst
():
GetCode
())
e
:
SetLabel
(
g
:
GetFirst
():
GetCode
())
Duel
.
Release
(
g
,
REASON_COST
)
Duel
.
Release
(
g
,
REASON_COST
)
end
end
...
...
expansions/script/c98920655.lua
View file @
8fa9cbfb
...
@@ -43,14 +43,14 @@ end
...
@@ -43,14 +43,14 @@ end
function
c98920655
.
fselect
(
g
,
e
,
tp
)
function
c98920655
.
fselect
(
g
,
e
,
tp
)
return
aux
.
drccheck
(
g
)
and
g
:
IsExists
(
Card
.
IsAbleToHand
,
2
,
nil
)
and
g
:
IsExists
(
Card
.
IsCanBeSpecialSummoned
,
1
,
nil
,
e
,
0
,
tp
,
false
,
false
)
return
aux
.
drccheck
(
g
)
and
g
:
IsExists
(
Card
.
IsAbleToHand
,
2
,
nil
)
and
g
:
IsExists
(
Card
.
IsCanBeSpecialSummoned
,
1
,
nil
,
e
,
0
,
tp
,
false
,
false
)
end
end
function
c98920655
.
sp
filter
(
c
,
e
,
tp
)
function
c98920655
.
at
filter
(
c
,
e
,
tp
)
return
c
:
Is
CanBeSpecialSummoned
(
e
,
0
,
tp
,
false
,
false
)
return
c
:
Is
AbleToHand
(
)
end
end
function
c98920655
.
spop
(
e
,
tp
,
eg
,
ep
,
ev
,
re
,
r
,
rp
)
function
c98920655
.
spop
(
e
,
tp
,
eg
,
ep
,
ev
,
re
,
r
,
rp
)
local
tg
=
Duel
.
GetChainInfo
(
0
,
CHAININFO_TARGET_CARDS
):
Filter
(
Card
.
IsRelateToEffect
,
nil
,
e
)
local
tg
=
Duel
.
GetChainInfo
(
0
,
CHAININFO_TARGET_CARDS
):
Filter
(
Card
.
IsRelateToEffect
,
nil
,
e
)
if
tg
:
GetCount
()
>
0
and
Duel
.
GetLocationCount
(
tp
,
LOCATION_MZONE
)
>
0
then
if
tg
:
GetCount
()
>
0
and
Duel
.
GetLocationCount
(
tp
,
LOCATION_MZONE
)
>
0
then
Duel
.
Hint
(
HINT_SELECTMSG
,
tp
,
HINTMSG_ATOHAND
)
Duel
.
Hint
(
HINT_SELECTMSG
,
tp
,
HINTMSG_ATOHAND
)
local
sg
=
tg
:
FilterSelect
(
tp
,
c98920655
.
sp
filter
,
1
,
1
,
nil
,
e
,
tp
)
local
sg
=
tg
:
FilterSelect
(
tp
,
c98920655
.
at
filter
,
1
,
1
,
nil
,
e
,
tp
)
if
sg
:
GetCount
()
>
0
then
if
sg
:
GetCount
()
>
0
then
Duel
.
SendtoHand
(
sg
,
nil
,
REASON_EFFECT
)
Duel
.
SendtoHand
(
sg
,
nil
,
REASON_EFFECT
)
tg
:
Sub
(
sg
)
tg
:
Sub
(
sg
)
...
...
expansions/script/c98920700.lua
View file @
8fa9cbfb
...
@@ -16,7 +16,6 @@ function c98920700.initial_effect(c)
...
@@ -16,7 +16,6 @@ function c98920700.initial_effect(c)
e1
:
SetType
(
EFFECT_TYPE_SINGLE
+
EFFECT_TYPE_TRIGGER_O
)
e1
:
SetType
(
EFFECT_TYPE_SINGLE
+
EFFECT_TYPE_TRIGGER_O
)
e1
:
SetProperty
(
EFFECT_FLAG_DELAY
)
e1
:
SetProperty
(
EFFECT_FLAG_DELAY
)
e1
:
SetCode
(
EVENT_SUMMON_SUCCESS
)
e1
:
SetCode
(
EVENT_SUMMON_SUCCESS
)
e1
:
SetCountLimit
(
1
,
98920700
)
e1
:
SetTarget
(
c98920700
.
sptg
)
e1
:
SetTarget
(
c98920700
.
sptg
)
e1
:
SetOperation
(
c98920700
.
spop
)
e1
:
SetOperation
(
c98920700
.
spop
)
c
:
RegisterEffect
(
e1
)
c
:
RegisterEffect
(
e1
)
...
...
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