Commit 8ce9b51d authored by 聖園ミカ's avatar 聖園ミカ 🐟

Replace c22134515.lua

parent 910d32ae
Pipeline #31110 passed with stages
in 26 minutes and 57 seconds
......@@ -52,6 +52,20 @@ function s.initial_effect(c)
ec2:SetCode(EVENT_CUSTOM+id)
ec2:SetOperation(s.htccop)
c:RegisterEffect(ec2)
-- 特殊召唤时,清除指示物设置
local ec3=Effect.CreateEffect(c)
ec3:SetType(EFFECT_TYPE_CONTINUOUS+EFFECT_TYPE_SINGLE)
ec3:SetProperty(EFFECT_FLAG_CANNOT_DISABLE)
ec3:SetRange(LOCATION_MZONE)
ec3:SetCode(EVENT_SPSUMMON)
ec3:SetOperation(s.resetcop)
c:RegisterEffect(ec3)
local ec30=ec3:Clone()
ec30:SetCode(EVENT_SUMMON)
c:RegisterEffect(ec30)
local ec31=ec3:Clone()
ec31:SetCode(EVENT_FLIP_SUMMON)
c:RegisterEffect(ec31)
--special summon by PZONE
local e2=Effect.CreateEffect(c)
......@@ -290,3 +304,7 @@ function s.htccop(e,tp,eg,ep,ev,re,r,rp)
c:AddCounter(0x760,cnt)
end
end
function s.resetcop(e,tp,eg,ep,ev,re,r,rp)
Duel.GetLabel(e22134515)
e22134515:SetLabel()
end
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