Commit 1e77be92 authored by POLYMER's avatar POLYMER

fix

parent 8359b5c3
......@@ -17,7 +17,7 @@ function s.initial_effect(c)
--
local e1=Effect.CreateEffect(c)
e1:SetDescription(aux.Stringid(id,1))
e1:SetType(EFFECT_TYPE_FIELD+EFFECT_TYPE_TRIGGER_O)
e1:SetType(EFFECT_TYPE_FIELD+EFFECT_TYPE_TRIGGER_F)
e1:SetCode(EVENT_SPSUMMON_SUCCESS)
e1:SetRange(LOCATION_PZONE)
e1:SetCondition(s.pdcon)
......
......@@ -88,5 +88,9 @@ end
function s.indtg(e,c)
return (c:IsCode(40020509) and c:IsLocation(LOCATION_PZONE)) or c:IsFacedown()
local b1 = c:IsCode(40020509) and (c:IsLocation(LOCATION_PZONE) or c:GetSequence()==0 or c:GetSequence()==4)
local b2 = c:IsFacedown()
return b1 or b2
end
......@@ -33,7 +33,7 @@ function c75000861.initial_effect(c)
e3:SetType(EFFECT_TYPE_FIELD+EFFECT_TYPE_TRIGGER_O)
e3:SetCode(EVENT_SPSUMMON_SUCCESS)
e3:SetProperty(EFFECT_FLAG_DELAY)
e3:SetRange(LOCATION_FZONE)
e3:SetRange(LOCATION_SZONE)
e3:SetCountLimit(1,75000861)
e3:SetCondition(c75000861.sccon)
e3:SetTarget(c75000861.sctg)
......
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