Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Sign in / Register
Toggle navigation
P
pre-release-database-cdb
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
Vury Leo
pre-release-database-cdb
Commits
06f72af8
Commit
06f72af8
authored
Feb 07, 2026
by
Amiya
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
修复
parent
9068213a
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
18 additions
and
17 deletions
+18
-17
script/c100258002.lua
script/c100258002.lua
+18
-17
No files found.
script/c100258002.lua
View file @
06f72af8
...
...
@@ -37,10 +37,10 @@ function s.initial_effect(c)
e3
:
SetOperation
(
s
.
desop
)
c
:
RegisterEffect
(
e3
)
end
function
s
.
hspfilter1
(
c
,
tp
,
fc
)
function
s
.
hspfilter1
(
c
,
tp
,
fc
,
g
)
return
c
:
IsFusionSetCard
(
0x10f3
)
and
c
:
IsControler
(
tp
)
and
c
:
IsCanBeFusionMaterial
(
fc
,
SUMMON_TYPE_SPECIAL
)
and
Duel
.
IsExistingMatchingCard
(
s
.
hspfilter2
,
tp
,
LOCATION_MZONE
,
LOCATION_MZONE
,
1
,
c
,
tp
,
fc
,
c
)
and
g
:
IsExists
(
s
.
hspfilter2
,
1
,
c
,
tp
,
fc
,
c
)
end
function
s
.
hspfilter2
(
c
,
tp
,
fc
,
sc
)
local
g
=
Group
.
FromCards
(
c
,
sc
)
...
...
@@ -49,26 +49,27 @@ function s.hspfilter2(c,tp,fc,sc)
and
c
:
IsCanBeFusionMaterial
(
fc
,
SUMMON_TYPE_SPECIAL
)
and
Duel
.
GetLocationCountFromEx
(
tp
,
tp
,
g
,
fc
)
>
0
end
function
s
.
hspfilter
(
c
,
tp
,
fc
)
return
c
:
IsFaceup
()
and
(
c
:
IsFusionSetCard
(
0x10f3
)
or
c
:
GetCounter
(
0x1041
)
>
0
)
and
c
:
IsReleasable
(
REASON_MATERIAL
|
REASON_SPSUMMON
)
and
c
:
IsCanBeFusionMaterial
(
fc
,
SUMMON_TYPE_SPECIAL
)
end
function
s
.
fselect
(
g
,
tp
,
fc
)
return
g
:
IsExists
(
s
.
hspfilter1
,
1
,
nil
,
tp
,
fc
,
g
)
and
aux
.
mzctcheckrel
(
g
,
tp
,
REASON_SPSUMMON
)
end
function
s
.
hspcon
(
e
,
c
)
if
c
==
nil
then
return
true
end
return
Duel
.
CheckReleaseGroupEx
(
c
:
GetControler
(),
s
.
hspfilter1
,
1
,
REASON_SPSUMMON
,
false
,
nil
,
c
:
GetControler
(),
c
)
local
rg
=
Duel
.
GetMatchingGroup
(
s
.
hspfilter
,
tp
,
LOCATION_MZONE
,
LOCATION_MZONE
,
nil
,
tp
,
c
)
return
rg
:
CheckSubGroup
(
s
.
fselect
,
2
,
2
,
tp
,
c
)
end
function
s
.
hsptg
(
e
,
tp
,
eg
,
ep
,
ev
,
re
,
r
,
rp
,
chk
,
c
)
local
g1
=
Duel
.
GetReleaseGroup
(
tp
,
false
,
REASON_SPSUMMON
):
Filter
(
s
.
hspfilter1
,
nil
,
tp
,
c
)
local
rg
=
Duel
.
GetMatchingGroup
(
s
.
hspfilter
,
tp
,
LOCATION_MZONE
,
LOCATION_MZONE
,
nil
,
tp
,
c
)
local
rg
=
Duel
.
GetReleaseGroup
(
tp
,
false
,
REASON_SPSUMMON
)
Duel
.
Hint
(
HINT_SELECTMSG
,
tp
,
HINTMSG_RELEASE
)
local
tc1
=
g1
:
SelectUnselect
(
nil
,
tp
,
false
,
true
,
1
,
1
)
if
tc1
then
local
g2
=
Duel
.
GetMatchingGroup
(
s
.
hspfilter2
,
tp
,
LOCATION_MZONE
,
LOCATION_MZONE
,
tc1
,
tp
,
c
,
tc1
)
local
tc2
=
g2
:
SelectUnselect
(
nil
,
tp
,
false
,
true
,
1
,
1
)
if
tc2
then
local
mg
=
Group
.
CreateGroup
()
mg
:
AddCard
(
tc1
)
mg
:
AddCard
(
tc2
)
mg
:
KeepAlive
()
e
:
SetLabelObject
(
mg
)
return
true
end
return
false
local
sg
=
rg
:
SelectSubGroup
(
tp
,
s
.
fselect
,
true
,
2
,
2
,
tp
,
c
)
if
sg
:
GetCount
()
>
0
then
sg
:
KeepAlive
()
e
:
SetLabelObject
(
mg
)
else
return
false
end
end
function
s
.
hspop
(
e
,
tp
,
eg
,
ep
,
ev
,
re
,
r
,
rp
,
c
)
...
...
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