Commit 21558317 authored by mercury233's avatar mercury233

fix

parent eef9246c
......@@ -72,9 +72,22 @@ function c99330325.activate(e,tp,eg,ep,ev,re,r,rp)
tc1:RegisterEffect(e3)
local e4=e3:Clone()
tc2:RegisterEffect(e4)
local e5=Effect.CreateEffect(e:GetHandler())
e5:SetType(EFFECT_TYPE_FIELD)
e5:SetCode(EFFECT_CANNOT_EP)
e5:SetRange(LOCATION_MZONE)
e5:SetProperty(EFFECT_FLAG_PLAYER_TARGET)
e5:SetTargetRange(1,0)
e5:SetCondition(c99330325.becon)
tc1:RegisterEffect(e5)
local e6=e5:Clone()
tc2:RegisterEffect(e6)
Duel.SpecialSummonComplete()
end
end
function c99330325.becon(e)
return e:GetHandler():IsAttackable()
end
function c99330325.thcost(e,tp,eg,ep,ev,re,r,rp,chk)
if chk==0 then return e:GetHandler():IsAbleToRemoveAsCost() end
Duel.Remove(e:GetHandler(),POS_FACEUP,REASON_COST)
......
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