Commit 028ca7e0 authored by fallenstardust's avatar fallenstardust
parent 158d9d54
...@@ -28,6 +28,7 @@ function s.initial_effect(c) ...@@ -28,6 +28,7 @@ function s.initial_effect(c)
e4:SetCode(EVENT_ATTACK_ANNOUNCE) e4:SetCode(EVENT_ATTACK_ANNOUNCE)
e4:SetCountLimit(1) e4:SetCountLimit(1)
e4:SetRange(LOCATION_SZONE) e4:SetRange(LOCATION_SZONE)
e4:SetCondition(s.dmcon)
e4:SetCost(s.dmcost) e4:SetCost(s.dmcost)
e4:SetTarget(s.dmtg) e4:SetTarget(s.dmtg)
e4:SetOperation(s.dmop) e4:SetOperation(s.dmop)
...@@ -61,6 +62,9 @@ function s.desop(e,tp,eg,ep,ev,re,r,rp) ...@@ -61,6 +62,9 @@ function s.desop(e,tp,eg,ep,ev,re,r,rp)
Duel.Destroy(sg,REASON_EFFECT) Duel.Destroy(sg,REASON_EFFECT)
end end
end end
function s.dmcon(e,tp,eg,ep,ev,re,r,rp)
return tp~=Duel.GetTurnPlayer()
end
function s.cfilter(c,tp) function s.cfilter(c,tp)
return c:IsFacedown() and c:IsAbleToGraveAsCost() return c:IsFacedown() and c:IsAbleToGraveAsCost()
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