Commit a7b28a3f authored by POLYMER's avatar POLYMER

fix

parent 8ee02b20
......@@ -60,6 +60,9 @@ function s.initial_effect(c)
e6:SetValue(s.elimit)
c:RegisterEffect(e6)
end
function s.mfilter(c)
return c:IsFaceupEx() and c:IsAbleToRemoveAsCost()
end
function s.mfilter1(c)
return c:IsType(TYPE_MONSTER) and c:IsLevel(3) and
(c:IsRace(RACE_WARRIOR) or c:IsRace(RACE_FIEND))
......
......@@ -43,7 +43,7 @@ end
function c65810105.filter(c)
return c:IsRace(RACE_INSECT) and Duel.GetMZoneCount(tp,c,tp)>0
return c:IsRace(RACE_INSECT) and Duel.GetMZoneCount(tp,c,tp)>0 and c:IsAbleToRemoveAsCost()
end
function c65810105.spcon(e,c)
if c==nil then return true end
......@@ -60,7 +60,7 @@ function c65810105.sptg(e,tp,eg,ep,ev,re,r,rp,chk,c)
end
function c65810105.spop(e,tp,eg,ep,ev,re,r,rp,c)
local g=e:GetLabelObject()
Duel.Remove(g,nil,REASON_SPSUMMON)
Duel.Remove(g,POS_FACEUP,REASON_SPSUMMON)
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