Commit 3de9bc02 authored by wind2009's avatar wind2009

Fix 精霊コロゾ

parent 34f36f33
......@@ -37,9 +37,10 @@ function s.cfilter(c,fc)
return c:IsAbleToGraveAsCost()
end
function s.natg(e,tp,eg,ep,ev,re,r,rp,chk,chkc)
if chkc then return chkc==Duel.GetAttacker() end
if chk==0 then return Duel.GetAttacker():IsCanBeEffectTarget(e) and Duel.GetAttacker():GetAttack()>0 end
Duel.SetTargetCard(Duel.GetAttacker())
local a=Duel.GetAttacker()
if chkc then return chkc==a end
if chk==0 then return a~=nil and a:IsCanBeEffectTarget(e) and a:GetAttack()>0 end
Duel.SetTargetCard(a)
end
function s.naop(e,tp,eg,ep,ev,re,r,rp)
local c=e:GetHandler()
......
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