Commit cc2bf2ea authored by salix5's avatar salix5
parent 467fe79b
......@@ -13,8 +13,8 @@ end
function c43040603.condition(e,tp,eg,ep,ev,re,r,rp)
return Duel.IsPlayerCanSpecialSummon(tp)
end
function c43040603.filter(c)
return c:IsSummonableCard()
function c43040603.filter(c,e,tp)
return c:IsSummonableCard() and c:IsCanBeSpecialSummoned(e,0,tp,false,false)
end
function c43040603.cost(e,tp,eg,ep,ev,re,r,rp,chk)
if chk==0 then return Duel.CheckReleaseGroup(tp,nil,1,nil) end
......
......@@ -12,8 +12,8 @@ end
function c58577036.condition(e,tp,eg,ep,ev,re,r,rp)
return Duel.IsPlayerCanSpecialSummon(tp)
end
function c58577036.filter(c)
return c:IsSummonableCard()
function c58577036.filter(c,e,tp)
return c:IsSummonableCard() and c:IsCanBeSpecialSummoned(e,0,tp,false,false)
end
function c58577036.target(e,tp,eg,ep,ev,re,r,rp,chk)
if chk==0 then return Duel.GetLocationCount(tp,LOCATION_MZONE)>0
......
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