Commit d7f742a5 authored by Fluorohydride's avatar Fluorohydride

Merge pull request #706 from Lsty/patch-6

Update c81994591.lua
parents 0101d415 d8ce3d56
...@@ -14,7 +14,6 @@ function c81994591.initial_effect(c) ...@@ -14,7 +14,6 @@ function c81994591.initial_effect(c)
e2:SetType(EFFECT_TYPE_IGNITION) e2:SetType(EFFECT_TYPE_IGNITION)
e2:SetRange(LOCATION_GRAVE) e2:SetRange(LOCATION_GRAVE)
e2:SetCost(c81994591.indcost) e2:SetCost(c81994591.indcost)
e2:SetTarget(c81994591.indtg)
e2:SetOperation(c81994591.indop) e2:SetOperation(c81994591.indop)
c:RegisterEffect(e2) c:RegisterEffect(e2)
end end
...@@ -37,12 +36,6 @@ function c81994591.indcost(e,tp,eg,ep,ev,re,r,rp,chk) ...@@ -37,12 +36,6 @@ function c81994591.indcost(e,tp,eg,ep,ev,re,r,rp,chk)
if chk==0 then return e:GetHandler():IsAbleToRemoveAsCost() end if chk==0 then return e:GetHandler():IsAbleToRemoveAsCost() end
Duel.Remove(e:GetHandler(),POS_FACEUP,REASON_COST) Duel.Remove(e:GetHandler(),POS_FACEUP,REASON_COST)
end end
function c81994591.indfilter(c)
return c:IsFaceup() and c:IsSetCard(0x1d)
end
function c81994591.indtg(e,tp,eg,ep,ev,re,r,rp,chk)
if chk==0 then return Duel.IsExistingMatchingCard(c81994591.indfilter,tp,LOCATION_MZONE,0,1,nil) end
end
function c81994591.indop(e,tp,eg,ep,ev,re,r,rp) function c81994591.indop(e,tp,eg,ep,ev,re,r,rp)
local e1=Effect.CreateEffect(e:GetHandler()) local e1=Effect.CreateEffect(e:GetHandler())
e1:SetType(EFFECT_TYPE_FIELD) e1:SetType(EFFECT_TYPE_FIELD)
......
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