Commit 910d32ae authored by 聖園ミカ's avatar 聖園ミカ 🐟

Replace c22134510.lua

parent 387a11a8
Pipeline #31109 canceled with stages
in 7 seconds
...@@ -52,6 +52,20 @@ function s.initial_effect(c) ...@@ -52,6 +52,20 @@ function s.initial_effect(c)
ec2:SetCode(EVENT_CUSTOM+id) ec2:SetCode(EVENT_CUSTOM+id)
ec2:SetOperation(s.htccop) ec2:SetOperation(s.htccop)
c:RegisterEffect(ec2) 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 --special summon by PZONE
local e2=Effect.CreateEffect(c) local e2=Effect.CreateEffect(c)
...@@ -292,3 +306,7 @@ function s.htccop(e,tp,eg,ep,ev,re,r,rp) ...@@ -292,3 +306,7 @@ function s.htccop(e,tp,eg,ep,ev,re,r,rp)
c:AddCounter(0x760,cnt) c:AddCounter(0x760,cnt)
end end
end end
function s.resetcop(e,tp,eg,ep,ev,re,r,rp)
Duel.GetLabel(e22134510)
e22134510: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