Commit 269ee32f authored by Huangnan's avatar Huangnan

fix

parent bec6c457
Pipeline #29850 passed with stages
in 20 minutes and 46 seconds
......@@ -16,15 +16,17 @@ function c33703033.initial_effect(c)
c:RegisterEffect(e2)
local e3=Effect.CreateEffect(c)
e3:SetCategory(CATEGORY_SPECIAL_SUMMON)
e3:SetType(EFFECT_TYPE_ACTIVATE)
e3:SetType(EFFECT_TYPE_QUICK_O)
e3:SetCode(EVENT_CHAIN_NEGATED)
e3:SetProperty(EFFECT_FLAG_DELAY)
e3:SetCondition(c33703033.condition)
e3:SetOperation(c33703033.operation)
c:RegisterEffect(e3)
end
function c33703033.handcon(e,tp)
return Duel.GetLP(tp) < Duel.GetLP(1-tp)
function c33703033.handcon(e)
local c=e:GetHandler()
local tp=c:GetControler()
return Duel.GetLP(tp)<Duel.GetLP(1-tp)
end
function c33703033.target(e,tp,eg,ep,ev,re,r,rp,chk)
if chk==0 then return Duel.IsExistingMatchingCard(Card.IsFaceup,1-tp,LOCATION_ONFIELD,0,1,nil) 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