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
5045555f
Commit
5045555f
authored
Aug 09, 2025
by
POLYMER
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
fix
parent
0a5dd345
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
15 additions
and
15 deletions
+15
-15
expansions/script/c44401007.lua
expansions/script/c44401007.lua
+8
-8
expansions/script/c44401009.lua
expansions/script/c44401009.lua
+6
-6
expansions/script/c98920369.lua
expansions/script/c98920369.lua
+1
-1
No files found.
expansions/script/c44401007.lua
View file @
5045555f
...
...
@@ -56,21 +56,21 @@ end
function
c44401007
.
datg
(
e
,
c
)
return
c
:
IsLevelBelow
(
4
)
and
c
:
IsRace
(
RACE_PSYCHO
)
end
function
c44401007
.
cfilter
(
c
,
e
)
return
c
:
IsSetCard
(
0xa4a
)
and
c
:
Is
Faceup
()
and
c
:
IsCanBeEffectTarget
(
e
)
function
c44401007
.
cfilter
(
c
)
return
c
:
IsSetCard
(
0xa4a
)
and
c
:
Is
Location
(
LOCATION_MZONE
)
and
c
:
IsFaceup
(
)
end
function
c44401007
.
gcheck
(
sg
)
return
Duel
.
IsExistingTarget
(
nil
,
0
,
LOCATION_ONFIELD
,
LOCATION_ONFIELD
,
#
sg
,
sg
)
return
sg
:
FilterCount
(
c44401007
.
cfilter
,
nil
)
>=
(
#
sg
/
2
)
end
function
c44401007
.
target
(
e
,
tp
,
eg
,
ep
,
ev
,
re
,
r
,
rp
,
chk
,
chkc
)
if
chkc
then
return
false
end
local
g
=
Duel
.
GetMatchingGroup
(
c44401007
.
cfilter
,
tp
,
LOCATION_MZONE
,
0
,
nil
,
e
)
if
chk
==
0
then
return
g
:
CheckSubGroup
(
c44401007
.
gcheck
)
end
local
g
=
Duel
.
GetMatchingGroup
(
Card
.
IsAbleToRemove
,
tp
,
LOCATION_ONFIELD
,
LOCATION_ONFIELD
,
nil
):
Filter
(
Card
.
IsCanBeEffectTarget
,
nil
,
e
)
if
chk
==
0
then
return
g
:
CheckSubGroup
(
c44401007
.
gcheck
,
2
,
2
)
end
Duel
.
Hint
(
HINT_SELECTMSG
,
tp
,
HINTMSG_TARGET
)
local
sg
=
g
:
SelectSubGroup
(
tp
,
c44401007
.
gcheck
,
false
,
1
,
#
g
)
local
sg
=
g
:
SelectSubGroup
(
tp
,
c44401007
.
gcheck
,
false
,
2
,
#
g
)
Duel
.
SetTargetCard
(
sg
)
Duel
.
Hint
(
HINT_SELECTMSG
,
tp
,
HINTMSG_TARGET
)
Duel
.
SelectTarget
(
tp
,
nil
,
tp
,
LOCATION_ONFIELD
,
LOCATION_ONFIELD
,
#
sg
,
#
sg
,
sg
)
--
Duel.Hint(HINT_SELECTMSG,tp,HINTMSG_TARGET)
--
Duel.SelectTarget(tp,nil,tp,LOCATION_ONFIELD,LOCATION_ONFIELD,#sg,#sg,sg)
e
:
GetHandler
():
RegisterFlagEffect
(
0
,
RESET_EVENT
+
RESETS_STANDARD
+
RESET_PHASE
+
PHASE_END
,
EFFECT_FLAG_CLIENT_HINT
,
1
,
0
,
aux
.
Stringid
(
44401007
,
0
))
end
function
c44401007
.
operation
(
e
,
tp
,
eg
,
ep
,
ev
,
re
,
r
,
rp
)
...
...
expansions/script/c44401009.lua
View file @
5045555f
...
...
@@ -45,18 +45,18 @@ function c44401009.atkop(e,tp,eg,ep,ev,re,r,rp)
e1
:
SetReset
(
RESET_EVENT
+
RESETS_STANDARD
+
RESET_PHASE
+
PHASE_END
+
RESET_OPPO_TURN
,
1
)
e
:
GetHandler
():
RegisterEffect
(
e1
)
end
function
c44401009
.
cfilter
(
c
,
e
)
return
c
:
IsSetCard
(
0xa4a
)
and
c
:
IsFaceup
()
and
c
:
Is
CanBeEffectTarget
(
e
)
and
c
:
Is
AbleToRemove
()
function
c44401009
.
cfilter
(
c
)
return
c
:
IsSetCard
(
0xa4a
)
and
c
:
IsFaceup
()
and
c
:
IsAbleToRemove
()
end
function
c44401009
.
gcheck
(
sg
,
e
)
return
sg
:
FilterCount
(
c44401009
.
cfilter
,
nil
,
e
)
>=
math.floor
(
#
sg
/
2
)
function
c44401009
.
gcheck
(
sg
)
return
sg
:
FilterCount
(
c44401009
.
cfilter
,
nil
)
>=
(
#
sg
/
2
)
end
function
c44401009
.
target
(
e
,
tp
,
eg
,
ep
,
ev
,
re
,
r
,
rp
,
chk
,
chkc
)
if
chkc
then
return
false
end
local
g
=
Duel
.
GetMatchingGroup
(
Card
.
IsAbleToRemove
,
tp
,
LOCATION_MZONE
,
LOCATION_MZONE
,
nil
):
Filter
(
Card
.
IsCanBeEffectTarget
,
nil
,
e
)
if
chk
==
0
then
return
g
:
CheckSubGroup
(
c44401009
.
gcheck
,
2
,
2
,
e
)
end
if
chk
==
0
then
return
g
:
CheckSubGroup
(
c44401009
.
gcheck
,
2
,
2
)
end
Duel
.
Hint
(
HINT_SELECTMSG
,
tp
,
HINTMSG_TARGET
)
local
sg
=
g
:
SelectSubGroup
(
tp
,
c44401009
.
gcheck
,
false
,
2
,
#
g
,
e
)
local
sg
=
g
:
SelectSubGroup
(
tp
,
c44401009
.
gcheck
,
false
,
2
,
#
g
)
Duel
.
SetTargetCard
(
sg
)
--Duel.Hint(HINT_SELECTMSG,tp,HINTMSG_TARGET)
--Duel.SelectTarget(tp,Card.IsAbleToRemove,tp,LOCATION_MZONE,LOCATION_MZONE,#sg,#sg,sg)
...
...
expansions/script/c98920369.lua
View file @
5045555f
...
...
@@ -50,7 +50,7 @@ function c98920369.cfilter1(c,tp)
return
c
:
IsRace
(
RACE_REPTILE
)
and
Duel
.
GetMZoneCount
(
tp
,
c
)
>=
1
end
function
c98920369
.
spcost1
(
e
,
tp
,
eg
,
ep
,
ev
,
re
,
r
,
rp
,
chk
)
if
chk
==
0
then
return
Duel
.
CheckReleaseGroupEx
(
tp
,
c98920369
.
cfilter1
,
1
,
nil
,
REASON_COST
,
true
,
tp
)
end
if
chk
==
0
then
return
Duel
.
CheckReleaseGroupEx
(
tp
,
c98920369
.
cfilter1
,
1
,
REASON_COST
,
true
,
nil
,
tp
)
end
local
g
=
Duel
.
SelectReleaseGroupEx
(
tp
,
c98920369
.
cfilter1
,
1
,
1
,
REASON_COST
,
true
,
nil
,
tp
)
Duel
.
Release
(
g
,
REASON_COST
)
end
...
...
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