Commit fedcc369 authored by nanahira's avatar nanahira

fix

parent 7e18c793
......@@ -63,6 +63,18 @@ function c11510448.initial_effect(c)
local e8=e7:Clone()
e8:SetCode(EVENT_SPSUMMON_SUCCESS)
c:RegisterEffect(e8)
local e2=Effect.CreateEffect(c)
e2:SetType(EFFECT_TYPE_FIELD)
e2:SetProperty(EFFECT_FLAG_SET_AVAILABLE+EFFECT_FLAG_IGNORE_RANGE+EFFECT_FLAG_IGNORE_IMMUNE)
e2:SetCode(EFFECT_TO_GRAVE_REDIRECT)
e2:SetRange(LOCATION_MZONE)
e2:SetTargetRange(0xfe,0xff)
e2:SetValue(LOCATION_REMOVED)
e2:SetTarget(function(e,c)
return c:GetOwner()~=e:GetHandlerPlayer()
end)
c:RegisterEffect(e2)
end
function c11510448.ovfilter(c)
return c:IsFaceup() and c:IsSetCard(0xf1) and not c:IsCode(11510448)
......
......@@ -63,6 +63,18 @@ function c11510448.initial_effect(c)
local e8=e7:Clone()
e8:SetCode(EVENT_SPSUMMON_SUCCESS)
c:RegisterEffect(e8)
local e2=Effect.CreateEffect(c)
e2:SetType(EFFECT_TYPE_FIELD)
e2:SetProperty(EFFECT_FLAG_SET_AVAILABLE+EFFECT_FLAG_IGNORE_RANGE+EFFECT_FLAG_IGNORE_IMMUNE)
e2:SetCode(EFFECT_TO_GRAVE_REDIRECT)
e2:SetRange(LOCATION_MZONE)
e2:SetTargetRange(0xfe,0xff)
e2:SetValue(LOCATION_REMOVED)
e2:SetTarget(function(e,c)
return c:GetOwner()~=e:GetHandlerPlayer()
end)
c:RegisterEffect(e2)
end
function c11510448.ovfilter(c)
return c:IsFaceup() and c:IsSetCard(0xf1) and not c:IsCode(11510448)
......
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