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
de0fa255
Commit
de0fa255
authored
Dec 08, 2025
by
wind2009
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Sync shadoll fusion monster
parent
e70da0af
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
25 additions
and
10 deletions
+25
-10
c32467459.lua
c32467459.lua
+17
-8
c8852158.lua
c8852158.lua
+8
-2
No files found.
c32467459.lua
View file @
de0fa255
...
@@ -3,14 +3,23 @@ local s,id,o=GetID()
...
@@ -3,14 +3,23 @@ local s,id,o=GetID()
function
s
.
initial_effect
(
c
)
function
s
.
initial_effect
(
c
)
--fusion material
--fusion material
c
:
EnableReviveLimit
()
c
:
EnableReviveLimit
()
--fusion
if
aux
.
AddFusionProcShaddoll
then
local
e0
=
Effect
.
CreateEffect
(
c
)
--old function
e0
:
SetType
(
EFFECT_TYPE_SINGLE
)
local
e0
=
Effect
.
CreateEffect
(
c
)
e0
:
SetProperty
(
EFFECT_FLAG_CANNOT_DISABLE
+
EFFECT_FLAG_UNCOPYABLE
)
e0
:
SetType
(
EFFECT_TYPE_SINGLE
)
e0
:
SetCode
(
EFFECT_FUSION_MATERIAL
)
e0
:
SetProperty
(
EFFECT_FLAG_CANNOT_DISABLE
+
EFFECT_FLAG_UNCOPYABLE
)
e0
:
SetCondition
(
s
.
FShaddollCondition
)
e0
:
SetCode
(
EFFECT_FUSION_MATERIAL
)
e0
:
SetOperation
(
s
.
FShaddollOperation
)
e0
:
SetCondition
(
s
.
FShaddollCondition
)
c
:
RegisterEffect
(
e0
)
e0
:
SetOperation
(
s
.
FShaddollOperation
)
c
:
RegisterEffect
(
e0
)
else
--new function
aux
.
AddFusionProcMix
(
c
,
false
,
true
,
function
(
mc
)
return
mc
:
IsFusionSetCard
(
0x9d
)
end
,
function
(
mc
)
return
aux
.
FShaddollFilter2
(
mc
,
ATTRIBUTE_DARK
)
end
,
function
(
mc
)
return
aux
.
FShaddollFilter2
(
mc
,
ATTRIBUTE_EARTH
)
end
)
end
--spsummon condition
--spsummon condition
local
e1
=
Effect
.
CreateEffect
(
c
)
local
e1
=
Effect
.
CreateEffect
(
c
)
e1
:
SetType
(
EFFECT_TYPE_SINGLE
)
e1
:
SetType
(
EFFECT_TYPE_SINGLE
)
...
...
c8852158.lua
View file @
de0fa255
...
@@ -3,8 +3,14 @@ local s,id,o=GetID()
...
@@ -3,8 +3,14 @@ local s,id,o=GetID()
function
s
.
initial_effect
(
c
)
function
s
.
initial_effect
(
c
)
--fusion material
--fusion material
c
:
EnableReviveLimit
()
c
:
EnableReviveLimit
()
--fusion
-- using new function
aux
.
AddFusionProcShaddoll
(
c
,
ATTRIBUTE_WIND
)
if
aux
.
AddFusionProcShaddoll
then
--old function
aux
.
AddFusionProcShaddoll
(
c
,
ATTRIBUTE_WIND
)
else
--new function
aux
.
AddFusionProcFun2
(
c
,
function
(
mc
)
return
mc
:
IsFusionSetCard
(
0x9d
)
end
,
function
(
mc
)
return
aux
.
FShaddollFilter2
(
mc
,
ATTRIBUTE_WIND
)
end
,
true
)
end
--cannot spsummon
--cannot spsummon
local
e1
=
Effect
.
CreateEffect
(
c
)
local
e1
=
Effect
.
CreateEffect
(
c
)
e1
:
SetType
(
EFFECT_TYPE_SINGLE
)
e1
:
SetType
(
EFFECT_TYPE_SINGLE
)
...
...
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