Commit 2543a299 authored by GuGu's avatar GuGu

Update c999701.lua

parent 7bab553e
Pipeline #34545 passed with stage
in 45 seconds
......@@ -120,7 +120,11 @@ end
-- }
function M.value(e, c)
return c:IsType(TYPE_SYNCHRO) and SUMMON_TYPE_SYNCHRO or SUMMON_TYPE_XYZ
if not c then return SUMMON_TYPE_SPECIAL end
local b1=c:IsType(TYPE_SYNCHRO) and SUMMON_TYPE_SYNCHRO
local b2=c:IsType(TYPE_XYZ) and SUMMON_TYPE_XYZ
local b3=c:IsType(TYPE_SYNCHRO) and c:IsType(TYPE_XYZ) and SUMMON_TYPE_SYNCHRO+SUMMON_TYPE_XYZ
return b1 or b2 or b3
end
function M.thfilter(c)
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment