Commit f2e6bb6e authored by Amiya's avatar Amiya

修复

parent 47a97f33
Pipeline #31126 passed with stages
in 1 minute and 3 seconds
...@@ -19,7 +19,6 @@ function s.initial_effect(c) ...@@ -19,7 +19,6 @@ function s.initial_effect(c)
e2:SetCategory(CATEGORY_DISABLE) e2:SetCategory(CATEGORY_DISABLE)
e2:SetType(EFFECT_TYPE_QUICK_O) e2:SetType(EFFECT_TYPE_QUICK_O)
e2:SetCode(EVENT_CHAINING) e2:SetCode(EVENT_CHAINING)
e2:SetProperty(EFFECT_FLAG_DAMAGE_STEP+EFFECT_FLAG_DAMAGE_CAL)
e2:SetRange(LOCATION_MZONE) e2:SetRange(LOCATION_MZONE)
e2:SetCondition(s.discon) e2:SetCondition(s.discon)
e2:SetCost(s.discost) e2:SetCost(s.discost)
...@@ -57,7 +56,7 @@ function s.cfilter(c,tp) ...@@ -57,7 +56,7 @@ function s.cfilter(c,tp)
and c:IsRace(RACE_CYBERSE) and c:IsControler(tp) and c:IsRace(RACE_CYBERSE) and c:IsControler(tp)
end end
function s.tfilter(c,tp) function s.tfilter(c,tp)
return c:IsFaceup() return c:IsFaceup() and c:IsLocation(LOCATION_MZONE)
and c:IsRace(RACE_CYBERSE) and c:IsControler(tp) and c:IsRace(RACE_CYBERSE) and c:IsControler(tp)
end end
function s.discon(e,tp,eg,ep,ev,re,r,rp) function s.discon(e,tp,eg,ep,ev,re,r,rp)
......
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