Commit a415b94d authored by POLYMER's avatar POLYMER

fix

parent dc6f155b
......@@ -30,6 +30,7 @@ function cm.initial_effect(c)
local e2=Effect.CreateEffect(c)
e2:SetType(EFFECT_TYPE_SINGLE)
e2:SetCode(EFFECT_IMMUNE_EFFECT)
e2:SetProperty(EFFECT_FLAG_SINGLE_RANGE)
e2:SetRange(LOCATION_MZONE)
e2:SetCondition(cm.imcon)
e2:SetValue(cm.imval)
......
......@@ -51,7 +51,7 @@ function c9911461.desop(e,tp,eg,ep,ev,re,r,rp)
Duel.RegisterEffect(e2,tp)
end
function c9911461.cfilter(c,tp)
return c:IsFaceup() and c:IsSetCard(0x3952) and c:IsControler(tp)
return c:IsFaceup() and c:IsSetCard(0x3952) and c:IsControler(tp) and c:IsLocation(LOCATION_MZONE)
end
function c9911461.desfilter2(c,tp)
return c:IsType(TYPE_SPELL+TYPE_TRAP) and c:GetColumnGroup():IsExists(c9911461.cfilter,1,nil,tp)
......
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