Commit b5c529aa authored by Amiya's avatar Amiya

修复

parent 876ce9c5
Pipeline #41506 passed with stages
in 3 minutes and 28 seconds
No preview for this file type
...@@ -30,17 +30,17 @@ function s.initial_effect(c) ...@@ -30,17 +30,17 @@ function s.initial_effect(c)
e3:SetOperation(s.spop) e3:SetOperation(s.spop)
c:RegisterEffect(e3) c:RegisterEffect(e3)
--special summon 2 --special summon 2
local e3=Effect.CreateEffect(c) local e4=Effect.CreateEffect(c)
e3:SetDescription(aux.Stringid(id,2)) e4:SetDescription(aux.Stringid(id,2))
e3:SetCategory(CATEGORY_SPECIAL_SUMMON) e4:SetCategory(CATEGORY_SPECIAL_SUMMON)
e3:SetType(EFFECT_TYPE_FIELD+EFFECT_TYPE_TRIGGER_O) e4:SetType(EFFECT_TYPE_FIELD+EFFECT_TYPE_TRIGGER_O)
e3:SetCode(EVENT_ATTACK_ANNOUNCE) e4:SetCode(EVENT_ATTACK_ANNOUNCE)
e3:SetRange(LOCATION_SZONE) e4:SetRange(LOCATION_SZONE)
e3:SetCountLimit(1,id+o) e4:SetCountLimit(1,id+o)
e3:SetCondition(s.spcon2) e4:SetCondition(s.spcon2)
e3:SetTarget(s.sptg2) e4:SetTarget(s.sptg2)
e3:SetOperation(s.spop2) e4:SetOperation(s.spop2)
c:RegisterEffect(e3) c:RegisterEffect(e4)
end end
function s.cfilter(c) function s.cfilter(c)
return c:IsFaceupEx() and c:IsSetCard(0x100d) return c:IsFaceupEx() and c:IsSetCard(0x100d)
......
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