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) function c17825378.initial_effect(c)
--pendulum summon --pendulum summon
aux.EnablePendulumAttribute(c) aux.EnablePendulumAttribute(c)
...@@ -22,8 +23,8 @@ function c17825378.initial_effect(c) ...@@ -22,8 +23,8 @@ function c17825378.initial_effect(c)
c:RegisterEffect(e2) c:RegisterEffect(e2)
end end
function c17825378.mtval(e,c) function c17825378.mtval(e,c)
if not c then return false end if not c then return true end
return c:IsAttribute(ATTRIBUTE_DARK) return true --c:IsAttribute(ATTRIBUTE_DARK)
end end
function c17825378.ctcon(e,tp,eg,ep,ev,re,r,rp) function c17825378.ctcon(e,tp,eg,ep,ev,re,r,rp)
local c=e:GetHandler() local c=e:GetHandler()
......
...@@ -76,6 +76,6 @@ function c72064891.mttg(e,c) ...@@ -76,6 +76,6 @@ function c72064891.mttg(e,c)
return c:IsType(TYPE_MONSTER) and c:IsAbleToRemove() return c:IsType(TYPE_MONSTER) and c:IsAbleToRemove()
end end
function c72064891.mtval(e,c) function c72064891.mtval(e,c)
if not c then return false end if not c then return true end
return c:IsLevel(7) and c:IsRace(RACE_DRAGON) return true --c:IsLevel(7) and c:IsRace(RACE_DRAGON)
end 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