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
3
Merge Requests
3
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
a76cc0be
Commit
a76cc0be
authored
Jun 03, 2025
by
wind2009
Committed by
GitHub
Jun 03, 2025
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Replace to Card.IsFusionSetCard in fusion spell check (#2934)
parent
6496a94e
Changes
5
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
6 additions
and
6 deletions
+6
-6
c17725109.lua
c17725109.lua
+1
-1
c34813545.lua
c34813545.lua
+1
-1
c35098357.lua
c35098357.lua
+1
-1
c66518509.lua
c66518509.lua
+2
-2
c87532344.lua
c87532344.lua
+1
-1
No files found.
c17725109.lua
View file @
a76cc0be
...
...
@@ -62,7 +62,7 @@ function s.filter2(c,e,tp,m,f,chkf)
and
c
:
IsCanBeSpecialSummoned
(
e
,
SUMMON_TYPE_FUSION
,
tp
,
false
,
false
)
and
c
:
CheckFusionMaterial
(
m
,
nil
,
chkf
)
end
function
s
.
fcheck
(
tp
,
sg
,
fc
)
return
sg
:
IsExists
(
Card
.
IsSetCard
,
1
,
nil
,
0xdd
)
return
sg
:
IsExists
(
Card
.
Is
Fusion
SetCard
,
1
,
nil
,
0xdd
)
end
function
s
.
fsptg
(
e
,
tp
,
eg
,
ep
,
ev
,
re
,
r
,
rp
,
chk
)
if
chk
==
0
then
...
...
c34813545.lua
View file @
a76cc0be
...
...
@@ -90,7 +90,7 @@ function c34813545.filter2(c,e,tp,m,f,chkf)
and
c
:
IsCanBeSpecialSummoned
(
e
,
SUMMON_TYPE_FUSION
,
tp
,
false
,
false
)
and
c
:
CheckFusionMaterial
(
m
,
nil
,
chkf
)
end
function
c34813545
.
fcheck
(
tp
,
sg
,
fc
)
return
sg
:
IsExists
(
Card
.
IsSetCard
,
1
,
nil
,
0x2a
)
return
sg
:
IsExists
(
Card
.
Is
Fusion
SetCard
,
1
,
nil
,
0x2a
)
end
function
c34813545
.
fstg
(
e
,
tp
,
eg
,
ep
,
ev
,
re
,
r
,
rp
,
chk
)
if
chk
==
0
then
...
...
c35098357.lua
View file @
a76cc0be
...
...
@@ -29,7 +29,7 @@ function c35098357.filter2(c,e,tp,m,f,chkf)
and
c
:
IsCanBeSpecialSummoned
(
e
,
SUMMON_TYPE_FUSION
,
tp
,
false
,
false
)
and
c
:
CheckFusionMaterial
(
m
,
nil
,
chkf
)
end
function
c35098357
.
fcheck
(
tp
,
sg
,
fc
)
return
sg
:
IsExists
(
Card
.
IsSetCard
,
1
,
nil
,
0x128
)
return
sg
:
IsExists
(
Card
.
Is
Fusion
SetCard
,
1
,
nil
,
0x128
)
end
function
c35098357
.
target
(
e
,
tp
,
eg
,
ep
,
ev
,
re
,
r
,
rp
,
chk
)
if
chk
==
0
then
...
...
c66518509.lua
View file @
a76cc0be
...
...
@@ -69,9 +69,9 @@ function s.exfilter(c,tp)
end
function
s
.
fcheck
(
tp
,
sg
,
fc
)
if
Duel
.
GetFlagEffect
(
tp
,
id
)
~=
0
then
return
sg
:
IsExists
(
Card
.
IsSetCard
,
1
,
nil
,
0x1a1
)
return
sg
:
IsExists
(
Card
.
Is
Fusion
SetCard
,
1
,
nil
,
0x1a1
)
else
return
sg
:
IsExists
(
Card
.
IsSetCard
,
1
,
nil
,
0x1a1
)
and
not
sg
:
IsExists
(
s
.
exfilter
,
1
,
nil
,
tp
)
return
sg
:
IsExists
(
Card
.
Is
Fusion
SetCard
,
1
,
nil
,
0x1a1
)
and
not
sg
:
IsExists
(
s
.
exfilter
,
1
,
nil
,
tp
)
end
end
function
s
.
target
(
e
,
tp
,
eg
,
ep
,
ev
,
re
,
r
,
rp
,
chk
)
...
...
c87532344.lua
View file @
a76cc0be
...
...
@@ -126,7 +126,7 @@ function s.filter3(c,e)
return
c
:
IsOnField
()
and
not
c
:
IsImmuneToEffect
(
e
)
end
function
s
.
fcheck
(
tp
,
sg
,
fc
)
return
sg
:
IsExists
(
Card
.
IsSetCard
,
1
,
nil
,
0x1a5
)
return
sg
:
IsExists
(
Card
.
Is
Fusion
SetCard
,
1
,
nil
,
0x1a5
)
end
function
s
.
futg
(
e
,
tp
,
eg
,
ep
,
ev
,
re
,
r
,
rp
,
chk
)
if
chk
==
0
then
...
...
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