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
80fdd2c3
Commit
80fdd2c3
authored
Apr 04, 2025
by
POLYMER
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
fix
parent
5861bfe7
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
38 additions
and
39 deletions
+38
-39
expansions/script/c11451854.lua
expansions/script/c11451854.lua
+1
-1
expansions/script/c11451945.lua
expansions/script/c11451945.lua
+37
-38
No files found.
expansions/script/c11451854.lua
View file @
80fdd2c3
...
...
@@ -275,7 +275,7 @@ function cm.chkval0(e,te)
if
e
:
GetHandler
():
GetFlagEffect
(
11451854
)
==
0
then
local
prop
=
EFFECT_FLAG_SET_AVAILABLE
if
PNFL_INFLUENCED_HINT
or
PNFL_DEBUG
then
prop
=
prop
|
EFFECT_FLAG_CLIENT_HINT
end
e
:
GetHandler
():
RegisterFlagEffect
(
11451854
,
RESET_EVENT
+
0x1fc0000
,
prop
,
1
,
0
,
aux
.
Stringid
(
11451854
,
2
))
e
:
GetHandler
():
RegisterFlagEffect
(
11451854
,
RESET_EVENT
+
RESETS_STANDARD
-
RESET_LEAVE
+
RESET_MSCHANGE
,
prop
,
1
,
0
,
aux
.
Stringid
(
11451854
,
2
))
end
end
return
false
...
...
expansions/script/c11451945.lua
View file @
80fdd2c3
...
...
@@ -71,8 +71,8 @@ function cm.adop(e,tp,eg,ep,ev,re,r,rp)
for
tc
in
aux
.
Next
(
g
)
do
tc
:
RegisterFlagEffect
(
m
,
0
,
0
,
1
)
local
te
=
tc
:
GetActivateEffect
()
if
te
and
(
not
te
:
GetDescription
()
or
te
:
GetDescription
()
==
0
)
then
te
:
SetDescription
(
aux
.
Stringid
(
m
,
0
))
if
te
then
if
(
not
te
:
GetDescription
()
or
te
:
GetDescription
()
==
0
)
then
te
:
SetDescription
(
aux
.
Stringid
(
m
,
0
))
end
local
e5
=
Effect
.
CreateEffect
(
tc
)
e5
:
SetDescription
(
aux
.
Stringid
(
m
,
1
))
e5
:
SetCategory
(
CATEGORY_DESTROY
+
CATEGORY_SPECIAL_SUMMON
)
...
...
@@ -126,43 +126,42 @@ function cm.spop(e,tp,eg,ep,ev,re,r,rp)
Duel
.
HintSelection
(
g
)
if
Duel
.
Destroy
(
g
,
REASON_EFFECT
)
>
0
and
Duel
.
GetLocationCount
(
tp
,
LOCATION_MZONE
)
>
0
then
local
tg
=
Duel
.
GetChainInfo
(
0
,
CHAININFO_TARGET_CARDS
):
Filter
(
Card
.
IsRelateToEffect
,
nil
,
e
)
if
#
tg
>
0
and
Duel
.
SpecialSummon
(
tg
,
0
,
tp
,
tp
,
false
,
false
,
POS_FACEUP
)
>
0
then
local
eset
=
{
e
:
GetHandler
():
GetActivateEffect
()}
local
tab
,
tab2
=
{},{}
for
i
,
te
in
pairs
(
eset
)
do
if
te
~=
e
then
local
tg
=
te
:
GetTarget
()
local
op
=
te
:
GetOperation
()
if
(
not
tg
or
(
tg
and
tg
(
te
,
tp
,
eg
,
ep
,
ev
,
re
,
r
,
rp
,
0
)))
and
op
then
tab
[
#
tab
+
1
]
=
te
:
GetDescription
()
tab2
[
#
tab
]
=
i
end
end
end
if
#
tab
==
0
then
return
end
tab
[
#
tab
+
1
]
=
aux
.
Stringid
(
m
,
3
)
tab2
[
#
tab
]
=
0
Duel
.
Hint
(
HINT_SELECTMSG
,
tp
,
aux
.
Stringid
(
m
,
2
))
local
opt
=
tab2
[
1
+
Duel
.
SelectOption
(
tp
,
table.unpack
(
tab
))]
if
opt
==
0
then
return
end
local
te
=
eset
[
opt
]
local
target
=
te
:
GetTarget
()
local
operation
=
te
:
GetOperation
()
Duel
.
ClearTargetCard
()
if
target
then
target
(
te
,
tp
,
eg
,
ep
,
ev
,
re
,
r
,
rp
,
1
)
end
local
g
=
Duel
.
GetChainInfo
(
0
,
CHAININFO_TARGET_CARDS
)
if
g
then
Duel
.
HintSelection
(
g
)
for
fc
in
aux
.
Next
(
g
)
do
fc
:
CreateEffectRelation
(
te
)
end
end
if
operation
then
operation
(
te
,
tp
,
eg
,
ep
,
ev
,
re
,
r
,
rp
)
end
if
g
then
for
fc
in
aux
.
Next
(
g
)
do
fc
:
ReleaseEffectRelation
(
te
)
end
if
#
tg
>
0
then
Duel
.
SpecialSummon
(
tg
,
0
,
tp
,
tp
,
false
,
false
,
POS_FACEUP
)
end
end
local
eset
=
{
e
:
GetHandler
():
GetActivateEffect
()}
local
tab
,
tab2
=
{},{}
for
i
,
te
in
pairs
(
eset
)
do
if
te
~=
e
then
local
tg
=
te
:
GetTarget
()
local
op
=
te
:
GetOperation
()
if
(
not
tg
or
(
tg
and
tg
(
te
,
tp
,
eg
,
ep
,
ev
,
re
,
r
,
rp
,
0
)))
and
op
then
tab
[
#
tab
+
1
]
=
te
:
GetDescription
()
tab2
[
#
tab
]
=
i
end
end
end
if
#
tab
==
0
then
return
end
tab
[
#
tab
+
1
]
=
aux
.
Stringid
(
m
,
3
)
tab2
[
#
tab
]
=
0
Duel
.
Hint
(
HINT_SELECTMSG
,
tp
,
aux
.
Stringid
(
m
,
2
))
local
opt
=
tab2
[
1
+
Duel
.
SelectOption
(
tp
,
table.unpack
(
tab
))]
if
opt
==
0
then
return
end
local
te
=
eset
[
opt
]
local
target
=
te
:
GetTarget
()
local
operation
=
te
:
GetOperation
()
Duel
.
ClearTargetCard
()
if
target
then
target
(
te
,
tp
,
eg
,
ep
,
ev
,
re
,
r
,
rp
,
1
)
end
local
g
=
Duel
.
GetChainInfo
(
0
,
CHAININFO_TARGET_CARDS
)
if
g
then
Duel
.
HintSelection
(
g
)
for
fc
in
aux
.
Next
(
g
)
do
fc
:
CreateEffectRelation
(
te
)
end
end
if
operation
then
operation
(
te
,
tp
,
eg
,
ep
,
ev
,
re
,
r
,
rp
)
end
if
g
then
for
fc
in
aux
.
Next
(
g
)
do
fc
:
ReleaseEffectRelation
(
te
)
end
end
end
\ No newline at end of file
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