Commit 3740734c authored by salix5's avatar salix5

fix

parent 0cf831ce
...@@ -8,6 +8,7 @@ function c50720316.initial_effect(c) ...@@ -8,6 +8,7 @@ function c50720316.initial_effect(c)
e1:SetCode(EVENT_SPSUMMON_SUCCESS) e1:SetCode(EVENT_SPSUMMON_SUCCESS)
e1:SetProperty(EFFECT_FLAG_DAMAGE_STEP+EFFECT_FLAG_DELAY) e1:SetProperty(EFFECT_FLAG_DAMAGE_STEP+EFFECT_FLAG_DELAY)
e1:SetCountLimit(1,50720316) e1:SetCountLimit(1,50720316)
e1:SetCost(c50720316.cost)
e1:SetTarget(c50720316.thtg1) e1:SetTarget(c50720316.thtg1)
e1:SetOperation(c50720316.tgop1) e1:SetOperation(c50720316.tgop1)
c:RegisterEffect(e1) c:RegisterEffect(e1)
...@@ -18,6 +19,10 @@ function c50720316.initial_effect(c) ...@@ -18,6 +19,10 @@ function c50720316.initial_effect(c)
e2:SetOperation(c50720316.tgop2) e2:SetOperation(c50720316.tgop2)
c:RegisterEffect(e2) c:RegisterEffect(e2)
end end
function c50720316.cost(e,tp,eg,ep,ev,re,r,rp,chk)
if chk==0 then return true end
Duel.Hint(HINT_OPSELECTED,1-tp,e:GetDescription())
end
function c50720316.thfilter1(c) function c50720316.thfilter1(c)
return c:IsSetCard(0xa5) and c:IsType(TYPE_QUICKPLAY) and c:IsAbleToHand() return c:IsSetCard(0xa5) and c:IsType(TYPE_QUICKPLAY) and c:IsAbleToHand()
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