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
c93dd8ff
Commit
c93dd8ff
authored
Jun 15, 2025
by
Vury Leo
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
pruge
parent
0c4ab1da
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 addition
and
28 deletions
+1
-28
c34933456.lua
c34933456.lua
+1
-28
No files found.
c34933456.lua
View file @
c93dd8ff
...
...
@@ -10,34 +10,7 @@ function c34933456.initial_effect(c)
e1
:
SetOperation
(
c34933456
.
activate
)
c
:
RegisterEffect
(
e1
)
end
---@type FUSION_SPELL_PRE_SELECT_MAT_LOCATION_FUNCTION
function
s
.
pre_select_mat_location
(
tc
,
tp
)
local
location
=
LOCATION_HAND
|
LOCATION_MZONE
--- If Summoning a "Magistus" Fusion Monster, you can also use monsters in your Spell & Trap Zones
if
tc
:
IsSetCard
(
0x150
)
then
location
=
location
|
LOCATION_SZONE
end
return
location
end
---@type FUSION_FGCHECK_FUNCTION
function
s
.
fcheck
(
tp
,
mg
,
tc
,
mg_all
)
--- materials must include a Spellcaster monster
--- @param c Card
if
not
mg_all
:
IsExists
(
function
(
c
)
return
c
:
IsRace
(
RACE_SPELLCASTER
)
end
,
1
,
nil
)
then
return
false
end
--- when we have mg in SZONE, we already know tc is Magistus
--- you can only use monsters in your Spell & Trap Zones that are equipped to a "Magistus" monster.
local
mg_szone
=
mg
:
Filter
(
function
(
c
)
return
c
:
IsLocation
(
LOCATION_SZONE
)
end
,
nil
)
if
mg_szone
:
IsExists
(
function
(
c
)
return
not
s
.
mttg
(
c
)
end
,
1
,
nil
)
then
return
false
end
return
true
end
function
s
.
mttg
(
c
)
function
c34933456
.
mttg
(
e
,
c
)
local
tc
=
c
:
GetEquipTarget
()
return
tc
and
tc
:
IsSetCard
(
0x150
)
and
c
:
GetOriginalType
()
&
TYPE_MONSTER
~=
0
end
...
...
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