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
aae6d826
Commit
aae6d826
authored
Aug 16, 2025
by
POLYMER
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
fix
parent
77262190
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
30 additions
and
1 deletion
+30
-1
expansions/script/c11451926.lua
expansions/script/c11451926.lua
+30
-1
No files found.
expansions/script/c11451926.lua
View file @
aae6d826
...
...
@@ -5,7 +5,17 @@ function cm.initial_effect(c)
local
e1
=
Effect
.
CreateEffect
(
c
)
e1
:
SetType
(
EFFECT_TYPE_ACTIVATE
)
e1
:
SetCode
(
EVENT_FREE_CHAIN
)
--e1:SetCost(cm.cost)
c
:
RegisterEffect
(
e1
)
local
e3
=
Effect
.
CreateEffect
(
c
)
e3
:
SetType
(
EFFECT_TYPE_FIELD
)
e3
:
SetCode
(
EFFECT_ACTIVATE_COST
)
e3
:
SetProperty
(
EFFECT_FLAG_PLAYER_TARGET
)
e3
:
SetLabelObject
(
e1
)
e3
:
SetTargetRange
(
1
,
1
)
e3
:
SetTarget
(
cm
.
actarget
)
e3
:
SetOperation
(
cm
.
costop
)
--Duel.RegisterEffect(e3,0)
local
e2
=
Effect
.
CreateEffect
(
c
)
e2
:
SetType
(
EFFECT_TYPE_FIELD
)
e2
:
SetCode
(
EFFECT_FLAG_EFFECT
+
m
)
...
...
@@ -34,11 +44,30 @@ function cm.initial_effect(c)
e3
:
SetOperation
(
cm
.
matop
)
--c:RegisterEffect(e3)
end
function
cm
.
actarget
(
e
,
te
,
tp
)
return
te
:
GetHandler
()
==
e
:
GetHandler
()
and
te
==
e
:
GetLabelObject
()
end
function
cm
.
costop
(
e
,
tp
,
eg
,
ep
,
ev
,
re
,
r
,
rp
)
if
Duel
.
GetFlagEffect
(
tp
,
m
+
0xffffff
)
>=
2
then
local
eset
=
{
Duel
.
IsPlayerAffectedByEffect
(
tp
,
EFFECT_FLAG_EFFECT
+
11451926
)}
local
g
=
Group
.
CreateGroup
()
for
_
,
te
in
pairs
(
eset
)
do
g
:
AddCard
(
te
:
GetHandler
())
end
if
#
g
>
1
then
Duel
.
Hint
(
HINT_SELECTMSG
,
tp
,
HINTMSG_OPERATECARD
)
g
=
g
:
Select
(
tp
,
1
,
1
,
nil
)
end
Duel
.
RaiseSingleEvent
(
g
:
GetFirst
(),
EVENT_CUSTOM
+
11451926
,
e
,
0
,
tp
,
tp
,
0
)
end
end
function
cm
.
cost
(
e
,
tp
,
eg
,
ep
,
ev
,
re
,
r
,
rp
,
chk
)
if
chk
==
0
then
return
Duel
.
GetFlagEffect
(
tp
,
m
+
0xffffff
)
<
2
+
(
Duel
.
GetFlagEffect
(
tp
,
11451926
)
>
0
and
1
or
0
)
end
Duel
.
RegisterFlagEffect
(
tp
,
m
+
0xffffff
,
RESET_PHASE
+
PHASE_END
,
EFFECT_FLAG_OATH
,
1
)
end
function
cm
.
con
(
e
,
tp
,
eg
,
ep
,
ev
,
re
,
r
,
rp
)
local
c
=
e
:
GetHandler
()
local
tp
=
c
:
GetControler
()
local
g
=
Duel
.
GetMatchingGroup
(
cm
.
tgfilter
,
tp
,
LOCATION_GRAVE
,
0
,
nil
)
return
not
c
:
IsLocation
(
LOCATION_GRAVE
)
or
(
g
:
IsContains
(
c
)
and
#
g
>=
3
)
return
not
c
:
IsLocation
(
LOCATION_GRAVE
)
or
(
g
:
IsContains
(
c
)
and
g
:
GetClassCount
(
Card
.
GetCode
)
>=
3
)
end
function
cm
.
op
(
e
,
tp
,
eg
,
ep
,
ev
,
re
,
r
,
rp
)
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