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
6c193bc3
Commit
6c193bc3
authored
Jul 14, 2025
by
Vury Leo
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
tuning 白の枢機竜
parent
0d056a5a
Changes
3
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
725 additions
and
781 deletions
+725
-781
c11321089.lua
c11321089.lua
+20
-1
c93053159.lua
c93053159.lua
+19
-3
procedure.lua
procedure.lua
+686
-777
No files found.
c11321089.lua
View file @
6c193bc3
...
@@ -8,7 +8,26 @@ function s.initial_effect(c)
...
@@ -8,7 +8,26 @@ function s.initial_effect(c)
Fusion
.
Slot
.
Group
({
Fusion
.
Slot
.
Group
({
min
=
3
,
min
=
3
,
max
=
3
,
max
=
3
,
unique_by
=
function
(
mc
)
return
{
mc
:
GetCode
(),
mc
:
GetFusionCode
()
}
end
,
--- @param mc Card
unique_by
=
function
(
mc
)
local
function
dedup_represent
(
code
)
if
code
==
78734254
then
return
17955766
elseif
code
==
13857930
then
return
17732278
end
return
code
end
local
code
=
dedup_represent
(
mc
:
GetCode
())
local
res
=
{
code
}
--- Add Fusion Tag names
for
_
,
eff
in
ipairs
({
mc
:
IsHasEffect
(
EFFECT_ADD_FUSION_CODE
)})
do
local
fusion_tag_code
=
eff
:
GetValue
()
assert
(
type
(
fusion_tag_code
)
==
'number'
)
table.insert
(
res
,
dedup_represent
(
fusion_tag_code
))
end
return
res
end
,
})
})
},
},
mat_filter
=
s
.
mat_filter
,
mat_filter
=
s
.
mat_filter
,
...
...
c93053159.lua
View file @
6c193bc3
...
@@ -9,9 +9,25 @@ function s.initial_effect(c)
...
@@ -9,9 +9,25 @@ function s.initial_effect(c)
Fusion
.
Slot
.
Group
({
-- 6 monsters in your GY with different names
Fusion
.
Slot
.
Group
({
-- 6 monsters in your GY with different names
min
=
6
,
min
=
6
,
max
=
6
,
max
=
6
,
filter
=
function
(
mc
)
return
mc
:
IsLocation
(
LOCATION_GRAVE
)
end
,
filter
=
function
(
mc
,
tc
)
return
mc
:
IsLocation
(
LOCATION_GRAVE
)
end
,
unique_by
=
function
(
tc
)
unique_by
=
function
(
mc
)
return
{
tc
:
GetFusionCode
()}
local
function
dedup_represent
(
code
)
if
code
==
78734254
then
return
17955766
elseif
code
==
13857930
then
return
17732278
end
return
code
end
local
code
=
dedup_represent
(
mc
:
GetCode
())
local
res
=
{
code
}
--- Add Fusion Tag names
for
_
,
eff
in
ipairs
({
mc
:
IsHasEffect
(
EFFECT_ADD_FUSION_CODE
)})
do
local
fusion_tag_code
=
eff
:
GetValue
()
assert
(
type
(
fusion_tag_code
)
==
'number'
)
table.insert
(
res
,
dedup_represent
(
fusion_tag_code
))
end
return
res
end
,
end
,
})
})
}
}
...
...
procedure.lua
View file @
6c193bc3
This diff is collapsed.
Click to expand it.
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