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
56b702bb
You need to sign in or sign up before continuing.
Commit
56b702bb
authored
Apr 25, 2025
by
POLYMER
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
fix
parent
0cd92b99
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
20 additions
and
15 deletions
+20
-15
expansions/script/c65123333.lua
expansions/script/c65123333.lua
+6
-6
expansions/script/c65899930.lua
expansions/script/c65899930.lua
+4
-0
expansions/script/c7499213.lua
expansions/script/c7499213.lua
+3
-3
expansions/script/c7499321.lua
expansions/script/c7499321.lua
+7
-6
No files found.
expansions/script/c65123333.lua
View file @
56b702bb
...
...
@@ -370,7 +370,7 @@ function s.rev(e,re,r,rp,rc)
_Effect
.
SetCode
(
e1
,
EVENT_DRAW
)
_Effect
.
SetCountLimit
(
e1
,
1
)
_Effect
.
SetOperation
(
e1
,
s
.
setlpop
)
_Duel
.
RegisterEffect
(
e1
,
1
-
tp
)
_Duel
.
RegisterEffect
(
e1
,
1
-
tp
)
return
true
else
return
false
...
...
@@ -2021,11 +2021,11 @@ function s.chainactop(e,tp,eg,ep,ev,re,r,rp)
local
se
=
etable
[
1
]
if
#
etable
>
1
then
local
op
=
aux
.
SelectFromOptions
(
tp
,
{
etable
[
1
],
etable
[
1
]:
GetDescription
()},
{
etable
[
2
],
etable
[
2
]:
GetDescription
()},
{
etable
[
3
],
etable
[
3
]:
GetDescription
()},
{
etable
[
4
],
etable
[
4
]:
GetDescription
()},
{
etable
[
5
],
etable
[
5
]:
GetDescription
()})
{
#
etable
>=
1
and
etable
[
1
],
etable
[
1
]:
GetDescription
()},
{
#
etable
>=
2
and
etable
[
2
],
etable
[
2
]:
GetDescription
()},
{
#
etable
>=
3
and
etable
[
3
],
etable
[
3
]:
GetDescription
()},
{
#
etable
>=
4
and
etable
[
4
],
etable
[
4
]:
GetDescription
()},
{
#
etable
>=
5
and
etable
[
5
],
etable
[
5
]:
GetDescription
()})
se
=
etable
[
op
]
end
local
code
=
sc
:
GetOriginalCode
()
...
...
expansions/script/c65899930.lua
View file @
56b702bb
...
...
@@ -15,6 +15,10 @@ function c65899930.activate(e,tp,eg,ep,ev,re,r,rp)
Duel
.
Hint
(
HINT_SELECTMSG
,
tp
,
HINTMSG_OPERATECARD
)
local
ec
=
Duel
.
SelectMatchingCard
(
tp
,
aux
.
TRUE
,
tp
,
LOCATION_ONFIELD
,
LOCATION_ONFIELD
,
1
,
1
,
e
:
GetHandler
()):
GetFirst
()
if
ec
then
if
ec
:
IsType
(
TYPE_XYZ
)
and
ec
:
GetOverlayCount
()
>
0
then
local
mg
=
ec
:
GetOverlayGroup
()
Duel
.
SendtoGrave
(
mg
,
REASON_RULE
)
end
Duel
.
Exile
(
ec
,
0
)
end
end
\ No newline at end of file
expansions/script/c7499213.lua
View file @
56b702bb
...
...
@@ -97,7 +97,7 @@ function s.spfilter1(c,e,tp)
return
not
c
:
IsType
(
TYPE_TOKEN
)
and
c
:
IsLocation
(
LOCATION_GRAVE
)
and
c
:
IsCanBeSpecialSummoned
(
e
,
0
,
tp
,
false
,
false
,
POS_FACEUP
,
1
-
tp
)
end
function
s
.
spfilter2
(
c
,
e
,
tp
)
return
not
c
:
IsType
(
TYPE_TOKEN
)
and
not
c
:
IsLocation
(
LOCATION_GRAVE
)
and
not
c
:
IsLocation
(
LOCATION_EXTRA
)
and
not
c
:
IsLocation
(
LOCATION_DECK
)
and
c
:
IsCanBeSpecialSummoned
(
e
,
0
,
tp
,
false
,
false
)
return
not
c
:
IsType
(
TYPE_TOKEN
)
and
not
(
c
:
IsLocation
(
LOCATION_EXTRA
)
and
c
:
IsFacedown
()
)
and
not
c
:
IsLocation
(
LOCATION_DECK
)
and
c
:
IsCanBeSpecialSummoned
(
e
,
0
,
tp
,
false
,
false
)
end
function
s
.
desop
(
e
,
tp
,
eg
,
ep
,
ev
,
re
,
r
,
rp
)
local
cg
=
Duel
.
GetChainInfo
(
0
,
CHAININFO_TARGET_CARDS
)
...
...
@@ -113,7 +113,7 @@ function s.desop(e,tp,eg,ep,ev,re,r,rp)
if
#
spg1
>
0
and
ft1
>
0
then
if
#
spg1
>
ft1
then
local
spg
=
spg1
Duel
.
Hint
(
HINT_SELECTMSG
,
tp
,
HINTMSG_SPSUMMON
)
Duel
.
Hint
(
HINT_SELECTMSG
,
tp
,
aux
.
Stringid
(
id
,
4
)
)
spg1
=
spg
:
Select
(
tp
,
ft1
,
ft1
,
nil
)
end
if
Duel
.
SpecialSummon
(
spg1
,
0
,
tp
,
1
-
tp
,
false
,
false
,
POS_FACEUP
)
~=
0
then
...
...
@@ -128,7 +128,7 @@ function s.desop(e,tp,eg,ep,ev,re,r,rp)
if
#
spg2
>
0
and
ft2
>
0
then
if
#
spg2
>
ft2
then
local
spg
=
spg2
Duel
.
Hint
(
HINT_SELECTMSG
,
tp
,
HINTMSG_SPSUMMON
)
Duel
.
Hint
(
HINT_SELECTMSG
,
tp
,
aux
.
Stringid
(
id
,
5
)
)
spg2
=
spg
:
Select
(
tp
,
ft2
,
ft2
,
nil
)
end
Duel
.
SpecialSummon
(
spg2
,
0
,
tp
,
tp
,
false
,
false
,
POS_FACEUP
)
...
...
expansions/script/c7499321.lua
View file @
56b702bb
...
...
@@ -69,12 +69,13 @@ function s.initial_effect(c)
--
if
not
s
.
global_effect
then
s
.
global_effect
=
true
local
e3
=
Effect
.
CreateEffect
(
c
)
e3
:
SetType
(
EFFECT_TYPE_CONTINUOUS
+
EFFECT_TYPE_FIELD
)
e3
:
SetCode
(
EVENT_CHAIN_SOLVED
)
e3
:
SetCondition
(
s
.
trcon
)
e3
:
SetOperation
(
s
.
trop
)
Duel
.
RegisterEffect
(
e3
,
0
)
local
ge3
=
Effect
.
CreateEffect
(
c
)
ge3
:
SetType
(
EFFECT_TYPE_CONTINUOUS
+
EFFECT_TYPE_FIELD
)
ge3
:
SetCode
(
EVENT_CHAIN_SOLVED
)
ge3
:
SetProperty
(
EFFECT_FLAG_IGNORE_IMMUNE
)
ge3
:
SetCondition
(
s
.
trcon
)
ge3
:
SetOperation
(
s
.
trop
)
Duel
.
RegisterEffect
(
ge3
,
0
)
end
end
function
s
.
rmcfilter
(
c
)
...
...
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