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
4ab0022a
Commit
4ab0022a
authored
Jul 12, 2025
by
Vury Leo
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
init Dogmatikalamity
parent
bd9a5a7f
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
14 additions
and
1 deletion
+14
-1
c93053159.lua
c93053159.lua
+13
-0
procedure.lua
procedure.lua
+1
-1
No files found.
c93053159.lua
View file @
4ab0022a
...
...
@@ -4,6 +4,19 @@ function s.initial_effect(c)
aux
.
AddCodeList
(
c
,
68468459
)
aux
.
AddMaterialCodeList
(
c
,
68468459
)
--aux.AddFusionProcCodeFun(c,68468459,s.mfilter,6,true,true)
Fusion
.
AddFusionProcedure
(
c
,{
slots
=
{
Fusion
.
Slot
.
Code
(
68468459
),
-- Fallen of Albaz
Fusion
.
Slot
.
Group
({
-- 6 monsters in your GY with different names
min
=
6
,
max
=
6
,
filter
=
function
(
mc
)
return
mc
:
IsLocation
(
LOCATION_GRAVE
)
end
,
unique_by
=
function
(
tc
)
return
tc
:
GetNameList
()
end
,
})
}
})
c
:
EnableReviveLimit
()
local
e0
=
Effect
.
CreateEffect
(
c
)
e0
:
SetType
(
EFFECT_TYPE_SINGLE
)
...
...
procedure.lua
View file @
4ab0022a
...
...
@@ -3634,7 +3634,7 @@ function Fusion.Slot.Filter(filter)
end
--- Group slot (multi-card)
---@param opts {min
:number,max?:number,filter?:fun(mc:Card):boolean
}
---@param opts {min
?:number,max?:number,filter?:fun(mc:Card):boolean
}
---@return table
function
Fusion
.
Slot
.
Group
(
opts
)
opts
.
min
=
opts
.
min
or
1
...
...
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