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
d97d98da
Commit
d97d98da
authored
Jul 13, 2025
by
Vury Leo
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Add 究極竜魔導師
parent
2afce688
Changes
3
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
308 additions
and
167 deletions
+308
-167
c12381100.lua
c12381100.lua
+34
-7
c71143015.lua
c71143015.lua
+8
-1
procedure.lua
procedure.lua
+266
-159
No files found.
c12381100.lua
View file @
d97d98da
...
...
@@ -2,6 +2,33 @@
local
s
,
id
,
o
=
GetID
()
function
s
.
initial_effect
(
c
)
aux
.
AddMaterialCodeList
(
c
,
23995346
)
-- common Ritual‐monster filter: 「カオス」儀式モンスター
local
ritual_filter
=
function
(
mc
,
tc
)
if
not
mc
:
IsAllTypes
(
TYPE_MONSTER
|
TYPE_RITUAL
)
then
return
false
end
return
mc
:
IsFusionSetCard
(
0xcf
)
end
Fusion
.
AddFusionProcedure
(
c
,{
variants
=
{
-- Variant A: 1 × 青眼の究極竜 + 1 × 「カオス」儀式モンスター
{
slots
=
{
Fusion
.
Slot
.
Code
(
23995346
),
Fusion
.
Slot
.
Filter
(
ritual_filter
),
}
},
-- Variant B: 3 × 「ブルーアイズ」モンスター + 1 × 「カオス」儀式モンスター
{
slots
=
{
Fusion
.
Slot
.
Group
({
min
=
3
,
max
=
3
,
filter
=
function
(
mc
,
tc
)
return
mc
:
IsFusionSetCard
(
0xdd
)
end
,
}),
Fusion
.
Slot
.
Filter
(
ritual_filter
),
}
}
}
})
c
:
EnableReviveLimit
()
--summon procedure
local
e0
=
Effect
.
CreateEffect
(
c
)
...
...
@@ -10,13 +37,13 @@ function s.initial_effect(c)
e0
:
SetCode
(
EFFECT_SPSUMMON_CONDITION
)
e0
:
SetValue
(
aux
.
fuslimit
)
c
:
RegisterEffect
(
e0
)
local
e1
=
Effect
.
CreateEffect
(
c
)
e1
:
SetType
(
EFFECT_TYPE_SINGLE
)
e1
:
SetProperty
(
EFFECT_FLAG_CANNOT_DISABLE
+
EFFECT_FLAG_UNCOPYABLE
)
e1
:
SetCode
(
EFFECT_FUSION_MATERIAL
)
e1
:
SetCondition
(
s
.
fcondition
)
e1
:
SetOperation
(
s
.
foperation
)
c
:
RegisterEffect
(
e1
)
--
local e1=Effect.CreateEffect(c)
--
e1:SetType(EFFECT_TYPE_SINGLE)
--
e1:SetProperty(EFFECT_FLAG_CANNOT_DISABLE+EFFECT_FLAG_UNCOPYABLE)
--
e1:SetCode(EFFECT_FUSION_MATERIAL)
--
e1:SetCondition(s.fcondition)
--
e1:SetOperation(s.foperation)
--
c:RegisterEffect(e1)
--negate
local
e2
=
Effect
.
CreateEffect
(
c
)
e2
:
SetDescription
(
aux
.
Stringid
(
id
,
1
))
...
...
c71143015.lua
View file @
d97d98da
...
...
@@ -11,7 +11,14 @@ function s.initial_effect(c)
{
[
0xff
]
=
FusionSpell
.
FUSION_OPERATION_SHUFFLE
}
},
stage_x_operation
=
s
.
stage_x_operation
,
locked_codes
=
{
89631139
,
23995346
}
locked_codes
=
function
(
tc
)
if
aux
.
IsMaterialListCode
(
tc
,
89631139
)
==
true
then
return
{
89631139
}
elseif
aux
.
IsMaterialListCode
(
tc
,
23995346
)
==
true
then
return
{
23995346
}
end
return
{}
end
})
e1
:
SetCategory
(
CATEGORY_SPECIAL_SUMMON
+
CATEGORY_FUSION_SUMMON
+
CATEGORY_GRAVE_ACTION
)
e1
:
SetHintTiming
(
0
,
TIMINGS_CHECK_MONSTER
+
TIMING_MAIN_END
)
...
...
procedure.lua
View file @
d97d98da
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