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
a4beb38a
Commit
a4beb38a
authored
Sep 28, 2025
by
POLYMER
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
fix
parent
3f3261f9
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
7 additions
and
7 deletions
+7
-7
expansions/script/c71401020.lua
expansions/script/c71401020.lua
+3
-3
expansions/script/c71401021.lua
expansions/script/c71401021.lua
+2
-3
expansions/script/c75081023.lua
expansions/script/c75081023.lua
+2
-1
No files found.
expansions/script/c71401020.lua
View file @
a4beb38a
...
@@ -70,9 +70,9 @@ function c71401020.checktg(e,c)
...
@@ -70,9 +70,9 @@ function c71401020.checktg(e,c)
return
not
c
:
IsPublic
()
return
not
c
:
IsPublic
()
end
end
function
c71401020
.
discon
(
e
,
tp
,
eg
,
ep
,
ev
,
re
,
r
,
rp
)
function
c71401020
.
discon
(
e
,
tp
,
eg
,
ep
,
ev
,
re
,
r
,
rp
)
local
code
=
Duel
.
GetChainInfo
(
ev
,
CHAININFO_TRIGGERING_CODE
)
local
code
,
ctrl
=
Duel
.
GetChainInfo
(
ev
,
CHAININFO_TRIGGERING_CODE
,
CHAININFO_TRIGGERING_CONTROLER
)
return
e
:
GetHandler
():
IsDefensePos
(
)
return
ctrl
==
1
-
tp
and
re
:
IsActiveType
(
TYPE_MONSTER
)
and
re
:
IsActiveType
(
TYPE_MONSTER
)
and
Duel
.
IsExistingMatchingCard
(
Card
.
IsCode
,
0
,
LOCATION_REMOVED
,
LOCATION_REMOVED
,
1
,
nil
,
code
)
and
rp
~=
tp
and
Duel
.
IsExistingMatchingCard
(
Card
.
IsCode
,
0
,
LOCATION_REMOVED
,
LOCATION_REMOVED
,
1
,
nil
,
code
)
end
end
function
c71401020
.
disop
(
e
,
tp
,
eg
,
ep
,
ev
,
re
,
r
,
rp
)
function
c71401020
.
disop
(
e
,
tp
,
eg
,
ep
,
ev
,
re
,
r
,
rp
)
Duel
.
NegateEffect
(
ev
)
Duel
.
NegateEffect
(
ev
)
...
...
expansions/script/c71401021.lua
View file @
a4beb38a
...
@@ -69,9 +69,8 @@ function c71401021.checktg(e,c)
...
@@ -69,9 +69,8 @@ function c71401021.checktg(e,c)
return
not
c
:
IsPublic
()
return
not
c
:
IsPublic
()
end
end
function
c71401021
.
discon
(
e
,
tp
,
eg
,
ep
,
ev
,
re
,
r
,
rp
)
function
c71401021
.
discon
(
e
,
tp
,
eg
,
ep
,
ev
,
re
,
r
,
rp
)
local
code
=
Duel
.
GetChainInfo
(
ev
,
CHAININFO_TRIGGERING_CODE
)
local
code
,
ctrl
=
Duel
.
GetChainInfo
(
ev
,
CHAININFO_TRIGGERING_CODE
,
CHAININFO_TRIGGERING_CONTROLER
)
return
e
:
GetHandler
():
IsDefensePos
()
return
ctrl
==
1
-
tp
and
re
:
IsActiveType
(
TYPE_SPELL
+
TYPE_TRAP
)
and
Duel
.
IsExistingMatchingCard
(
Card
.
IsCode
,
0
,
LOCATION_REMOVED
,
LOCATION_REMOVED
,
1
,
nil
,
code
)
and
re
:
IsActiveType
(
TYPE_SPELL
+
TYPE_TRAP
)
and
Duel
.
IsExistingMatchingCard
(
Card
.
IsCode
,
0
,
LOCATION_REMOVED
,
LOCATION_REMOVED
,
1
,
nil
,
code
)
end
end
function
c71401021
.
disop
(
e
,
tp
,
eg
,
ep
,
ev
,
re
,
r
,
rp
)
function
c71401021
.
disop
(
e
,
tp
,
eg
,
ep
,
ev
,
re
,
r
,
rp
)
Duel
.
NegateEffect
(
ev
)
Duel
.
NegateEffect
(
ev
)
...
...
expansions/script/c75081023.lua
View file @
a4beb38a
...
@@ -2,9 +2,10 @@
...
@@ -2,9 +2,10 @@
function
c75081023
.
initial_effect
(
c
)
function
c75081023
.
initial_effect
(
c
)
--revive
--revive
local
e0
=
Effect
.
CreateEffect
(
c
)
local
e0
=
Effect
.
CreateEffect
(
c
)
e0
:
SetCategory
(
CATEGORY_REMOVE
)
--
e0:SetCategory(CATEGORY_REMOVE)
e0
:
SetType
(
EFFECT_TYPE_ACTIVATE
)
e0
:
SetType
(
EFFECT_TYPE_ACTIVATE
)
e0
:
SetCode
(
EVENT_FREE_CHAIN
)
e0
:
SetCode
(
EVENT_FREE_CHAIN
)
e0
:
SetProperty
(
EFFECT_FLAG_CARD_TARGET
)
e0
:
SetHintTiming
(
0
,
TIMINGS_CHECK_MONSTER
+
TIMING_END_PHASE
)
e0
:
SetHintTiming
(
0
,
TIMINGS_CHECK_MONSTER
+
TIMING_END_PHASE
)
e0
:
SetCountLimit
(
1
,
75081023
)
e0
:
SetCountLimit
(
1
,
75081023
)
e0
:
SetTarget
(
c75081023
.
ovtg
)
e0
:
SetTarget
(
c75081023
.
ovtg
)
...
...
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