Commit 02e26190 authored by mercury233's avatar mercury233 Committed by GitHub

fix セイヴァー・ミラージュ (#1819)

parent 88ff1fb8
...@@ -3,6 +3,7 @@ function c98020526.initial_effect(c) ...@@ -3,6 +3,7 @@ function c98020526.initial_effect(c)
aux.AddCodeList(c,44508094) aux.AddCodeList(c,44508094)
--Activate --Activate
local e1=Effect.CreateEffect(c) local e1=Effect.CreateEffect(c)
e1:SetDescription(aux.Stringid(98020526,3))
e1:SetType(EFFECT_TYPE_ACTIVATE) e1:SetType(EFFECT_TYPE_ACTIVATE)
e1:SetCode(EVENT_FREE_CHAIN) e1:SetCode(EVENT_FREE_CHAIN)
c:RegisterEffect(e1) c:RegisterEffect(e1)
...@@ -17,6 +18,10 @@ function c98020526.initial_effect(c) ...@@ -17,6 +18,10 @@ function c98020526.initial_effect(c)
e2:SetTarget(c98020526.target) e2:SetTarget(c98020526.target)
e2:SetOperation(c98020526.activate) e2:SetOperation(c98020526.activate)
c:RegisterEffect(e2) c:RegisterEffect(e2)
local e3=e2:Clone()
e3:SetDescription(aux.Stringid(98020526,4))
e3:SetType(EFFECT_TYPE_ACTIVATE)
c:RegisterEffect(e3)
end end
function c98020526.cfilter(c,tp,rp) function c98020526.cfilter(c,tp,rp)
return c:IsPreviousControler(tp) and c:IsPreviousPosition(POS_FACEUP) and c:IsPreviousLocation(LOCATION_ONFIELD) return c:IsPreviousControler(tp) and c:IsPreviousPosition(POS_FACEUP) and c:IsPreviousLocation(LOCATION_ONFIELD)
......
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