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
3acc163e
Commit
3acc163e
authored
Feb 25, 2025
by
POLYMER
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
fix
parent
ee6ac0d4
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
41 additions
and
3 deletions
+41
-3
expansions/script/c53702601.lua
expansions/script/c53702601.lua
+39
-1
expansions/script/c91000407.lua
expansions/script/c91000407.lua
+1
-1
expansions/script/c91000413.lua
expansions/script/c91000413.lua
+1
-1
No files found.
expansions/script/c53702601.lua
View file @
3acc163e
...
...
@@ -168,7 +168,6 @@ function s.ClearWorldAttCheck(ap,ep)
return
attchk
end
function
s
.
ScreemEquips
(
c
,
pro
)
s
[
53762000
]
=
{}
local
e1
=
Effect
.
CreateEffect
(
c
)
e1
:
SetCategory
(
CATEGORY_EQUIP
)
e1
:
SetType
(
EFFECT_TYPE_ACTIVATE
)
...
...
@@ -240,3 +239,42 @@ function s.ScreemEDcon(e,tp,eg,ep,ev,re,r,rp)
local
ec
=
c
:
GetPreviousEquipTarget
()
return
ec
and
c
:
GetReason
()
&
0x201
==
0x201
and
ec
:
IsReason
(
REASON_XYZ
)
end
function
s
.
ScreemTraps
(
c
,
gete
)
local
e1
=
Effect
.
CreateEffect
(
c
)
e1
:
SetCategory
(
CATEGORY_SEARCH
+
CATEGORY_TOHAND
)
e1
:
SetType
(
EFFECT_TYPE_ACTIVATE
)
e1
:
SetCode
(
EVENT_FREE_CHAIN
)
e1
:
SetHintTiming
(
0
,
TIMINGS_CHECK_MONSTER
+
TIMING_END_PHASE
)
e1
:
SetCost
(
s
.
ScreemTcost
)
e1
:
SetTarget
(
s
.
ScreemTtarget
)
e1
:
SetOperation
(
s
.
ScreemToperation
(
gete
))
c
:
RegisterEffect
(
e1
)
return
e1
end
function
s
.
ScreemTcost
(
e
,
tp
,
eg
,
ep
,
ev
,
re
,
r
,
rp
,
chk
)
if
chk
==
0
then
return
e
:
GetHandler
():
IsAbleToRemoveAsCost
()
end
Duel
.
Remove
(
e
:
GetHandler
(),
POS_FACEUP
,
REASON_COST
)
end
function
s
.
ScreemTfilter
(
c
)
return
c
:
IsSetCard
(
0xc538
)
and
c
:
IsType
(
TYPE_TRAP
)
and
(
c
:
IsAbleToHand
()
or
c
:
IsSSetable
())
end
function
s
.
ScreemTtarget
(
e
,
tp
,
eg
,
ep
,
ev
,
re
,
r
,
rp
,
chk
)
if
chk
==
0
then
return
Duel
.
IsExistingMatchingCard
(
s
.
ScreemTfilter
,
tp
,
LOCATION_DECK
,
0
,
1
,
nil
)
end
e
:
GetHandler
():
CreateEffectRelation
(
e
)
end
function
s
.
ScreemToperation
(
gete
)
return
function
(
e
,
tp
,
eg
,
ep
,
ev
,
re
,
r
,
rp
)
if
not
e
:
GetHandler
():
IsRelateToEffect
(
e
)
then
return
end
gete
(
e
:
GetHandler
())
Duel
.
Hint
(
HINT_SELECTMSG
,
tp
,
HINTMSG_OPERATECARD
)
local
tc
=
Duel
.
SelectMatchingCard
(
tp
,
s
.
ScreemTfilter
,
tp
,
LOCATION_DECK
,
0
,
1
,
1
,
nil
):
GetFirst
()
if
tc
then
if
tc
:
IsAbleToHand
()
and
(
not
tc
:
IsSSetable
()
or
Duel
.
SelectOption
(
tp
,
1190
,
1153
)
==
0
)
then
Duel
.
SendtoHand
(
tc
,
nil
,
REASON_EFFECT
)
Duel
.
ConfirmCards
(
1
-
tp
,
tc
)
else
Duel
.
SSet
(
tp
,
tc
)
end
end
end
end
expansions/script/c91000407.lua
View file @
3acc163e
...
...
@@ -4,7 +4,7 @@ local cm=c91000407
function
c91000407
.
initial_effect
(
c
)
c
:
EnableReviveLimit
()
aux
.
AddFusionProcFunRep
(
c
,(
function
(
c
)
return
c
:
IsLevel
(
10
)
end
),
2
,
false
)
aux
.
AddContactFusionProcedure
(
c
,
Card
.
IsAbleToGraveAsCost
,
LOCATION_
MZONE
,
0
,
Duel
.
SendtoGrave
,
REASON_COST
)
aux
.
AddContactFusionProcedure
(
c
,
Card
.
IsAbleToGraveAsCost
,
LOCATION_
ONFIELD
,
0
,
Duel
.
SendtoGrave
,
REASON_COST
)
local
e1
=
Effect
.
CreateEffect
(
c
)
e1
:
SetType
(
EFFECT_TYPE_EQUIP
)
e1
:
SetCode
(
EFFECT_SET_CONTROL
)
...
...
expansions/script/c91000413.lua
View file @
3acc163e
...
...
@@ -4,7 +4,7 @@ local cm=c91000413
function
c91000413
.
initial_effect
(
c
)
c
:
EnableReviveLimit
()
aux
.
AddFusionProcFunRep
(
c
,(
function
(
c
)
return
c
:
IsLevel
(
10
)
end
),
2
,
false
)
aux
.
AddContactFusionProcedure
(
c
,
Card
.
IsAbleToGraveAsCost
,
LOCATION_
MZONE
,
0
,
Duel
.
SendtoGrave
,
REASON_COST
)
aux
.
AddContactFusionProcedure
(
c
,
Card
.
IsAbleToGraveAsCost
,
LOCATION_
ONFIELD
,
0
,
Duel
.
SendtoGrave
,
REASON_COST
)
local
e1
=
Effect
.
CreateEffect
(
c
)
e1
:
SetDescription
(
aux
.
Stringid
(
m
,
0
))
e1
:
SetCategory
(
CATEGORY_EQUIP
)
...
...
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