Commit b34211fe authored by Grajade's avatar Grajade

Update c1111501.lua

parent 7557e832
......@@ -27,6 +27,7 @@ function c1111501.initial_effect(c)
e3:SetType(EFFECT_TYPE_IGNITION)
e3:SetRange(LOCATION_FZONE)
e3:SetCountLimit(1,1111502)
e3:SetCost(c1111501.cost3)
e3:SetTarget(c1111501.tg3)
e3:SetOperation(c1111501.op3)
c:RegisterEffect(e3)
......@@ -48,6 +49,10 @@ function c1111501.op2(e,tp,eg,ep,ev,re,r,rp)
Duel.ConfirmCards(1-tp,sg)
end
--
function c1111501.cost3(e,tp,eg,ep,ev,re,r,rp,chk)
if chk==0 then return e:GetHandler():IsAbleToGraveAsCost() end
Duel.SendtoGrave(e:GetHandler(),REASON_COST)
end
function c1111501.tfilter3(c,e,tp)
return c:IsCode(1110003) and c:IsType(TYPE_MONSTER) and c:IsCanBeSpecialSummoned(e,0,tp,false,false)
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