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
MyCard
pre-release-database-cdb
Commits
822cbe69
Commit
822cbe69
authored
Jun 10, 2025
by
Vury Leo
Committed by
Huangnan
Jun 10, 2025
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Add Aiラブ融合 to new fusion
parent
b844b27f
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
41 additions
and
0 deletions
+41
-0
script-fix-fusion.cdb
script-fix-fusion.cdb
+0
-0
script/c59332125.lua
script/c59332125.lua
+41
-0
No files found.
script-fix-fusion.cdb
View file @
822cbe69
No preview for this file type
script/c59332125.lua
0 → 100644
View file @
822cbe69
--Aiラブ融合
local
s
,
id
,
o
=
GetID
()
function
s
.
initial_effect
(
c
)
--Activate
local
e1
=
FusionSpell
.
CreateSummonEffect
(
c
,{
fusfilter
=
s
.
fusfilter
,
pre_select_mat_opponent_location
=
LOCATION_MZONE
,
additional_fcheck
=
s
.
fcheck
})
e1
:
SetCountLimit
(
1
,
id
+
EFFECT_COUNT_CODE_OATH
)
c
:
RegisterEffect
(
e1
)
end
---@param c Card
function
s
.
fusfilter
(
c
)
return
c
:
IsRace
(
RACE_CYBERSE
)
end
---@type FUSION_FGCHECK_FUNCTION
function
s
.
fcheck
(
tp
,
mg
,
fc
,
mg_all
)
-- Filter the group to get only the opponent’s Fusion Materials
---@param c Card
local
mg_opponent
=
mg
:
Filter
(
function
(
c
)
return
c
:
IsControler
(
1
-
tp
)
end
,
nil
)
-- No more than one Fusion Material from the opponent is allowed
if
#
mg_opponent
>
1
then
return
false
end
-- Any opponent material used must be a LINK monster
---@param c Card
if
mg_opponent
:
IsExists
(
function
(
c
)
return
not
c
:
IsType
(
TYPE_LINK
)
end
,
1
,
nil
)
then
return
false
end
-- If using an opponent’s monster, you must also use at least one “@Ignister” monster you control
---@param c Card
if
#
mg_opponent
>
0
and
not
mg_all
:
IsExists
(
function
(
c
)
return
c
:
IsControler
(
tp
)
and
c
:
IsFusionSetCard
(
0x135
)
end
,
1
,
nil
)
then
return
false
end
return
true
end
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