Commit d2bb999c authored by mercury233's avatar mercury233

temp fix EFFECT_EXTRA_FUSION_MATERIAL

can is better than can't
parent cb1f601e
--捕食植物トリアンティス
--not fully implemented
function c17825378.initial_effect(c)
--pendulum summon
aux.EnablePendulumAttribute(c)
......@@ -22,8 +23,8 @@ function c17825378.initial_effect(c)
c:RegisterEffect(e2)
end
function c17825378.mtval(e,c)
if not c then return false end
return c:IsAttribute(ATTRIBUTE_DARK)
if not c then return true end
return true --c:IsAttribute(ATTRIBUTE_DARK)
end
function c17825378.ctcon(e,tp,eg,ep,ev,re,r,rp)
local c=e:GetHandler()
......
......@@ -76,6 +76,6 @@ function c72064891.mttg(e,c)
return c:IsType(TYPE_MONSTER) and c:IsAbleToRemove()
end
function c72064891.mtval(e,c)
if not c then return false end
return c:IsLevel(7) and c:IsRace(RACE_DRAGON)
if not c then return true end
return true --c:IsLevel(7) and c:IsRace(RACE_DRAGON)
end
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