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
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
Vee4
ygopro-scripts-888
Commits
ac140537
Commit
ac140537
authored
Jul 06, 2025
by
Vury Leo
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Add ヤミー
parent
ab02792f
Changes
4
Show whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
52 additions
and
1 deletion
+52
-1
c31603289.lua
c31603289.lua
+17
-0
c67098897.lua
c67098897.lua
+17
-0
c93192592.lua
c93192592.lua
+17
-0
procedure.lua
procedure.lua
+1
-1
No files found.
c31603289.lua
View file @
ac140537
...
@@ -4,6 +4,23 @@ function s.initial_effect(c)
...
@@ -4,6 +4,23 @@ function s.initial_effect(c)
--synchro summon
--synchro summon
c
:
EnableReviveLimit
()
c
:
EnableReviveLimit
()
aux
.
AddSynchroMixProcedure
(
c
,
s
.
matfilter1
,
nil
,
nil
,
s
.
matfilter2
,
1
,
1
)
aux
.
AddSynchroMixProcedure
(
c
,
s
.
matfilter1
,
nil
,
nil
,
s
.
matfilter2
,
1
,
1
)
Synchro
.
AddSynchroProcedure
(
c
,{
--- @param mc Card
level_mapper
=
function
(
mc
,
tc
)
if
mc
:
IsType
(
TYPE_LINK
)
and
mc
:
IsLink
(
1
)
and
mc
:
IsLocation
(
LOCATION_MZONE
)
and
mc
:
IsControler
(
tc
:
GetControler
())
then
return
{
1
}
end
return
Synchro
.
DefaultLevelMapper
(
mc
,
tc
)
end
,
tuner_filter
=
function
(
mc
,
tc
)
if
mc
:
IsType
(
TYPE_LINK
)
and
mc
:
IsLink
(
1
)
and
mc
:
IsLocation
(
LOCATION_MZONE
)
and
mc
:
IsControler
(
tc
:
GetControler
())
then
return
true
end
return
Synchro
.
DefaultTunerFilter
(
mc
,
tc
)
end
,
drop_default_tuner_filter
=
true
,
non_tuner_max
=
1
,
})
local
e0
=
Effect
.
CreateEffect
(
c
)
local
e0
=
Effect
.
CreateEffect
(
c
)
e0
:
SetType
(
EFFECT_TYPE_FIELD
)
e0
:
SetType
(
EFFECT_TYPE_FIELD
)
e0
:
SetCode
(
EFFECT_SYNCHRO_LEVEL_EX
)
e0
:
SetCode
(
EFFECT_SYNCHRO_LEVEL_EX
)
...
...
c67098897.lua
View file @
ac140537
...
@@ -4,6 +4,23 @@ function s.initial_effect(c)
...
@@ -4,6 +4,23 @@ function s.initial_effect(c)
--synchro summon
--synchro summon
c
:
EnableReviveLimit
()
c
:
EnableReviveLimit
()
aux
.
AddSynchroMixProcedure
(
c
,
s
.
matfilter1
,
nil
,
nil
,
s
.
matfilter2
,
1
,
1
)
aux
.
AddSynchroMixProcedure
(
c
,
s
.
matfilter1
,
nil
,
nil
,
s
.
matfilter2
,
1
,
1
)
Synchro
.
AddSynchroProcedure
(
c
,{
--- @param mc Card
level_mapper
=
function
(
mc
,
tc
)
if
mc
:
IsType
(
TYPE_LINK
)
and
mc
:
IsLink
(
1
)
and
mc
:
IsLocation
(
LOCATION_MZONE
)
and
mc
:
IsControler
(
tc
:
GetControler
())
then
return
{
1
}
end
return
Synchro
.
DefaultLevelMapper
(
mc
,
tc
)
end
,
tuner_filter
=
function
(
mc
,
tc
)
if
mc
:
IsType
(
TYPE_LINK
)
and
mc
:
IsLink
(
1
)
and
mc
:
IsLocation
(
LOCATION_MZONE
)
and
mc
:
IsControler
(
tc
:
GetControler
())
then
return
true
end
return
Synchro
.
DefaultTunerFilter
(
mc
,
tc
)
end
,
drop_default_tuner_filter
=
true
,
non_tuner_max
=
1
,
})
local
e0
=
Effect
.
CreateEffect
(
c
)
local
e0
=
Effect
.
CreateEffect
(
c
)
e0
:
SetType
(
EFFECT_TYPE_FIELD
)
e0
:
SetType
(
EFFECT_TYPE_FIELD
)
e0
:
SetCode
(
EFFECT_SYNCHRO_LEVEL_EX
)
e0
:
SetCode
(
EFFECT_SYNCHRO_LEVEL_EX
)
...
...
c93192592.lua
View file @
ac140537
...
@@ -4,6 +4,23 @@ function s.initial_effect(c)
...
@@ -4,6 +4,23 @@ function s.initial_effect(c)
--synchro summon
--synchro summon
c
:
EnableReviveLimit
()
c
:
EnableReviveLimit
()
aux
.
AddSynchroMixProcedure
(
c
,
s
.
matfilter1
,
nil
,
nil
,
s
.
matfilter2
,
1
,
1
)
aux
.
AddSynchroMixProcedure
(
c
,
s
.
matfilter1
,
nil
,
nil
,
s
.
matfilter2
,
1
,
1
)
Synchro
.
AddSynchroProcedure
(
c
,{
--- @param mc Card
level_mapper
=
function
(
mc
,
tc
)
if
mc
:
IsType
(
TYPE_LINK
)
and
mc
:
IsLink
(
1
)
and
mc
:
IsLocation
(
LOCATION_MZONE
)
and
mc
:
IsControler
(
tc
:
GetControler
())
then
return
{
1
}
end
return
Synchro
.
DefaultLevelMapper
(
mc
,
tc
)
end
,
tuner_filter
=
function
(
mc
,
tc
)
if
mc
:
IsType
(
TYPE_LINK
)
and
mc
:
IsLink
(
1
)
and
mc
:
IsLocation
(
LOCATION_MZONE
)
and
mc
:
IsControler
(
tc
:
GetControler
())
then
return
true
end
return
Synchro
.
DefaultTunerFilter
(
mc
,
tc
)
end
,
drop_default_tuner_filter
=
true
,
non_tuner_max
=
1
,
})
local
e0
=
Effect
.
CreateEffect
(
c
)
local
e0
=
Effect
.
CreateEffect
(
c
)
e0
:
SetType
(
EFFECT_TYPE_FIELD
)
e0
:
SetType
(
EFFECT_TYPE_FIELD
)
e0
:
SetCode
(
EFFECT_SYNCHRO_LEVEL_EX
)
e0
:
SetCode
(
EFFECT_SYNCHRO_LEVEL_EX
)
...
...
procedure.lua
View file @
ac140537
...
@@ -3693,7 +3693,7 @@ function Synchro.SynCondition(tuner_race,tuner_filter,non_tuner_race,non_tuner_f
...
@@ -3693,7 +3693,7 @@ function Synchro.SynCondition(tuner_race,tuner_filter,non_tuner_race,non_tuner_f
local
skip_hand_count_check
=
accel_synchro_opts
.
skip_hand_count_check
or
false
local
skip_hand_count_check
=
accel_synchro_opts
.
skip_hand_count_check
or
false
local
additional_scheck
=
accel_synchro_opts
.
additional_scheck
local
additional_scheck
=
accel_synchro_opts
.
additional_scheck
--- add additional_scheck
--- add additional_scheck
from accel synchro
if
additional_scheck
~=
nil
then
if
additional_scheck
~=
nil
then
local
old_scheck
=
scheck
local
old_scheck
=
scheck
scheck
=
aux
.
AND
(
additional_scheck
,
old_scheck
)
scheck
=
aux
.
AND
(
additional_scheck
,
old_scheck
)
...
...
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