Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Sign in / Register
Toggle navigation
Y
ygopro-scripts-888
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
4
Merge Requests
4
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
MyCard
ygopro-scripts-888
Commits
eb20f836
Commit
eb20f836
authored
Nov 30, 2025
by
mercury233
Committed by
GitHub
Nov 30, 2025
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
fix 真炎竜アルビオン (#3067)
parent
4f2113e9
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
7 additions
and
9 deletions
+7
-9
c38811586.lua
c38811586.lua
+7
-9
No files found.
c38811586.lua
View file @
eb20f836
...
@@ -54,18 +54,15 @@ end
...
@@ -54,18 +54,15 @@ end
function
c38811586
.
spfilter
(
c
,
e
,
tp
)
function
c38811586
.
spfilter
(
c
,
e
,
tp
)
return
c
:
IsCanBeEffectTarget
(
e
)
and
c
:
IsType
(
TYPE_MONSTER
)
return
c
:
IsCanBeEffectTarget
(
e
)
and
c
:
IsType
(
TYPE_MONSTER
)
end
end
function
c38811586
.
spsumfilter1
(
c
,
e
,
tp
)
function
c38811586
.
spsumfilter1
(
c
,
e
,
tp
,
g
)
return
c
:
IsCanBeSpecialSummoned
(
e
,
0
,
tp
,
false
,
false
,
POS_FACEUP
,
tp
)
return
c
:
IsCanBeSpecialSummoned
(
e
,
0
,
tp
,
false
,
false
,
POS_FACEUP
,
tp
)
and
g
:
IsExists
(
c38811586
.
spsumfilter2
,
1
,
c
,
e
,
tp
)
end
end
function
c38811586
.
spsumfilter2
(
c
,
e
,
tp
)
function
c38811586
.
spsumfilter2
(
c
,
e
,
tp
)
return
c
:
IsCanBeSpecialSummoned
(
e
,
0
,
tp
,
false
,
false
,
POS_FACEUP
,
1
-
tp
)
return
c
:
IsCanBeSpecialSummoned
(
e
,
0
,
tp
,
false
,
false
,
POS_FACEUP
,
1
-
tp
)
end
end
function
c38811586
.
gcheck
(
g
,
e
,
tp
)
function
c38811586
.
gcheck
(
g
,
e
,
tp
)
if
#
g
~=
2
then
return
false
end
return
g
:
IsExists
(
c38811586
.
spsumfilter1
,
1
,
nil
,
e
,
tp
,
g
)
local
ac
=
g
:
GetFirst
()
local
bc
=
g
:
GetNext
()
return
c38811586
.
spsumfilter1
(
ac
,
e
,
tp
)
and
c38811586
.
spsumfilter2
(
bc
,
e
,
tp
)
or
c38811586
.
spsumfilter1
(
bc
,
e
,
tp
)
and
c38811586
.
spsumfilter2
(
ac
,
e
,
tp
)
end
end
function
c38811586
.
sptg
(
e
,
tp
,
eg
,
ep
,
ev
,
re
,
r
,
rp
,
chk
,
chkc
)
function
c38811586
.
sptg
(
e
,
tp
,
eg
,
ep
,
ev
,
re
,
r
,
rp
,
chk
,
chkc
)
if
chkc
then
return
false
end
if
chkc
then
return
false
end
...
@@ -74,7 +71,7 @@ function c38811586.sptg(e,tp,eg,ep,ev,re,r,rp,chk,chkc)
...
@@ -74,7 +71,7 @@ function c38811586.sptg(e,tp,eg,ep,ev,re,r,rp,chk,chkc)
local
ft1
=
Duel
.
GetLocationCount
(
tp
,
LOCATION_MZONE
)
local
ft1
=
Duel
.
GetLocationCount
(
tp
,
LOCATION_MZONE
)
local
ft2
=
Duel
.
GetLocationCount
(
1
-
tp
,
LOCATION_MZONE
,
tp
)
local
ft2
=
Duel
.
GetLocationCount
(
1
-
tp
,
LOCATION_MZONE
,
tp
)
return
not
Duel
.
IsPlayerAffectedByEffect
(
tp
,
59822133
)
and
ft1
>
0
and
ft2
>
0
return
not
Duel
.
IsPlayerAffectedByEffect
(
tp
,
59822133
)
and
ft1
>
0
and
ft2
>
0
and
g
:
CheckSubGroup
(
c38811586
.
gcheck
,
2
,
2
,
e
,
tp
)
and
g
:
IsExists
(
c38811586
.
spsumfilter1
,
1
,
nil
,
e
,
tp
,
g
)
end
end
Duel
.
Hint
(
HINT_SELECTMSG
,
tp
,
HINTMSG_SPSUMMON
)
Duel
.
Hint
(
HINT_SELECTMSG
,
tp
,
HINTMSG_SPSUMMON
)
local
sg
=
g
:
SelectSubGroup
(
tp
,
c38811586
.
gcheck
,
false
,
2
,
2
,
e
,
tp
)
local
sg
=
g
:
SelectSubGroup
(
tp
,
c38811586
.
gcheck
,
false
,
2
,
2
,
e
,
tp
)
...
@@ -86,9 +83,10 @@ function c38811586.spop(e,tp,eg,ep,ev,re,r,rp)
...
@@ -86,9 +83,10 @@ function c38811586.spop(e,tp,eg,ep,ev,re,r,rp)
local
ft2
=
Duel
.
GetLocationCount
(
1
-
tp
,
LOCATION_MZONE
,
tp
)
local
ft2
=
Duel
.
GetLocationCount
(
1
-
tp
,
LOCATION_MZONE
,
tp
)
if
Duel
.
IsPlayerAffectedByEffect
(
tp
,
59822133
)
or
ft1
<=
0
or
ft2
<=
0
then
return
end
if
Duel
.
IsPlayerAffectedByEffect
(
tp
,
59822133
)
or
ft1
<=
0
or
ft2
<=
0
then
return
end
local
g
=
Duel
.
GetTargetsRelateToChain
()
local
g
=
Duel
.
GetTargetsRelateToChain
()
if
not
g
:
CheckSubGroup
(
c38811586
.
gcheck
,
2
,
2
,
e
,
tp
)
then
return
end
if
#
g
~=
2
then
return
end
Duel
.
Hint
(
HINT_SELECTMSG
,
tp
,
aux
.
Stringid
(
38811586
,
1
))
Duel
.
Hint
(
HINT_SELECTMSG
,
tp
,
aux
.
Stringid
(
38811586
,
1
))
local
sg
=
g
:
FilterSelect
(
tp
,
c38811586
.
spsumfilter1
,
1
,
1
,
nil
,
e
,
tp
)
local
sg
=
g
:
FilterSelect
(
tp
,
c38811586
.
spsumfilter1
,
1
,
1
,
nil
,
e
,
tp
,
g
)
if
#
sg
==
0
then
return
end
Duel
.
SpecialSummonStep
(
sg
:
GetFirst
(),
0
,
tp
,
tp
,
false
,
false
,
POS_FACEUP
)
Duel
.
SpecialSummonStep
(
sg
:
GetFirst
(),
0
,
tp
,
tp
,
false
,
false
,
POS_FACEUP
)
Duel
.
SpecialSummonStep
((
g
-
sg
):
GetFirst
(),
0
,
tp
,
1
-
tp
,
false
,
false
,
POS_FACEUP
)
Duel
.
SpecialSummonStep
((
g
-
sg
):
GetFirst
(),
0
,
tp
,
1
-
tp
,
false
,
false
,
POS_FACEUP
)
Duel
.
SpecialSummonComplete
()
Duel
.
SpecialSummonComplete
()
...
...
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