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
b45cce93
Commit
b45cce93
authored
Jun 24, 2025
by
POLYMER
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
fix
parent
494b86b3
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
8 additions
and
5 deletions
+8
-5
expansions/script/c89490001.lua
expansions/script/c89490001.lua
+7
-5
expansions/script/c89490034.lua
expansions/script/c89490034.lua
+1
-0
No files found.
expansions/script/c89490001.lua
View file @
b45cce93
...
@@ -17,7 +17,7 @@ function s.initial_effect(c)
...
@@ -17,7 +17,7 @@ function s.initial_effect(c)
local
custom_code
=
aux
.
RegisterMergedDelayedEvent_ToSingleCard
(
c
,
id
,
EVENT_TO_GRAVE
)
local
custom_code
=
aux
.
RegisterMergedDelayedEvent_ToSingleCard
(
c
,
id
,
EVENT_TO_GRAVE
)
local
e3
=
Effect
.
CreateEffect
(
c
)
local
e3
=
Effect
.
CreateEffect
(
c
)
e3
:
SetDescription
(
1193
)
e3
:
SetDescription
(
1193
)
e3
:
SetCategory
(
CATEGORY_TODECK
+
CATEGORY_SPECIAL_SUMMON
)
e3
:
SetCategory
(
CATEGORY_TODECK
)
e3
:
SetType
(
EFFECT_TYPE_FIELD
+
EFFECT_TYPE_TRIGGER_O
)
e3
:
SetType
(
EFFECT_TYPE_FIELD
+
EFFECT_TYPE_TRIGGER_O
)
e3
:
SetCode
(
custom_code
)
e3
:
SetCode
(
custom_code
)
e3
:
SetRange
(
LOCATION_MZONE
)
e3
:
SetRange
(
LOCATION_MZONE
)
...
@@ -55,12 +55,12 @@ end
...
@@ -55,12 +55,12 @@ end
function
s
.
thcon2
(
e
,
tp
,
eg
,
ep
,
ev
,
re
,
r
,
rp
)
function
s
.
thcon2
(
e
,
tp
,
eg
,
ep
,
ev
,
re
,
r
,
rp
)
return
eg
:
IsExists
(
s
.
cfilter
,
1
,
nil
,
tp
)
and
not
eg
:
IsContains
(
e
:
GetHandler
())
return
eg
:
IsExists
(
s
.
cfilter
,
1
,
nil
,
tp
)
and
not
eg
:
IsContains
(
e
:
GetHandler
())
end
end
function
s
.
tgfilter
(
c
,
e
)
function
s
.
tgfilter
(
c
,
e
,
tp
)
return
c
:
IsLocation
(
LOCATION_GRAVE
)
and
c
:
IsCanBeEffectTarget
(
e
)
and
c
:
IsAbleToDeck
(
)
return
c
:
IsLocation
(
LOCATION_GRAVE
)
and
c
:
IsCanBeEffectTarget
(
e
)
and
(
c
:
IsAbleToDeck
()
or
c
:
IsReason
(
REASON_RELEASE
)
and
c
:
IsCanBeSpecialSummoned
(
e
,
0
,
tp
,
false
,
false
)
)
end
end
function
s
.
thtg2
(
e
,
tp
,
eg
,
ep
,
ev
,
re
,
r
,
rp
,
chk
,
chkc
)
function
s
.
thtg2
(
e
,
tp
,
eg
,
ep
,
ev
,
re
,
r
,
rp
,
chk
,
chkc
)
local
mg
=
eg
:
Filter
(
s
.
cfilter
,
nil
,
tp
):
Filter
(
s
.
tgfilter
,
nil
,
e
)
local
mg
=
eg
:
Filter
(
s
.
cfilter
,
nil
,
tp
):
Filter
(
s
.
tgfilter
,
nil
,
e
,
tp
)
if
chkc
then
return
mg
:
IsContains
(
chkc
)
and
s
.
tgfilter
(
chkc
,
e
)
end
if
chkc
then
return
mg
:
IsContains
(
chkc
)
end
if
chk
==
0
then
return
mg
:
GetCount
()
>
0
end
if
chk
==
0
then
return
mg
:
GetCount
()
>
0
end
local
g
=
mg
local
g
=
mg
if
mg
:
GetCount
()
>
1
then
if
mg
:
GetCount
()
>
1
then
...
@@ -70,8 +70,10 @@ function s.thtg2(e,tp,eg,ep,ev,re,r,rp,chk,chkc)
...
@@ -70,8 +70,10 @@ function s.thtg2(e,tp,eg,ep,ev,re,r,rp,chk,chkc)
local
tc
=
g
:
GetFirst
()
local
tc
=
g
:
GetFirst
()
Duel
.
SetTargetCard
(
tc
)
Duel
.
SetTargetCard
(
tc
)
if
tc
:
IsReason
(
REASON_RELEASE
)
then
if
tc
:
IsReason
(
REASON_RELEASE
)
then
e
:
SetCategory
(
e
:
GetProperty
()
|
CATEGORY_SPECIAL_SUMMON
)
e
:
SetLabel
(
1
)
e
:
SetLabel
(
1
)
else
else
e
:
SetCategory
(
e
:
GetProperty
()
&~
CATEGORY_SPECIAL_SUMMON
)
e
:
SetLabel
(
0
)
e
:
SetLabel
(
0
)
Duel
.
SetOperationInfo
(
0
,
CATEGORY_TODECK
,
tc
,
1
,
0
,
0
)
Duel
.
SetOperationInfo
(
0
,
CATEGORY_TODECK
,
tc
,
1
,
0
,
0
)
end
end
...
...
expansions/script/c89490034.lua
View file @
b45cce93
--炯眼公主
--炯眼公主
local
s
,
id
,
o
=
GetID
()
function
s
.
initial_effect
(
c
)
function
s
.
initial_effect
(
c
)
aux
.
AddCodeList
(
c
,
89490015
)
aux
.
AddCodeList
(
c
,
89490015
)
c
:
EnableReviveLimit
()
c
:
EnableReviveLimit
()
...
...
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