Card.IsSynchroSummonable
Source Code | Usage Examples | Card
Functions
Checks if "c" can be Synchro Summoned using "must_use" as part of its materials, choosing among "mg", with "min" and "max" materials to be used for the Synchro Summon. How this works is that the script would check for all EFFECT_SPSUMMON_PROC that has SUMMON_TYPE_SYNCHRO as it's Value, then checks the effects' Condition with the provided arguments. Check out "aux.SynCondition" in "proc_synchro.lua" for how this is handled.
Signature
Card.IsSynchroSummonable(Card c
, [Group|Card|nil must_use
, Group|Card|nil mg
, int min
= 0
, int max
= 0
]) → bool
lua
c:IsSynchroSummonable(must_use,mg,min,max)
Parameters
Card
c
(To be added)
Group|Card|nil
must_use
Optional.
(To be added)
Group|Card|nil
mg
Optional.
(To be added)
int
min
Optional. Defaults to
0
.(To be added)
int
max
Optional. Defaults to
0
.(To be added)