Commit 770d9763 authored by Tachibana's avatar Tachibana

eme

parent f29512a8
Pipeline #8407 passed with stages
in 33 minutes and 1 second
No preview for this file type
......@@ -3,6 +3,12 @@ function c64800103.initial_effect(c)
--synchro summon
c:EnableReviveLimit()
aux.AddSynchroMixProcedure(c,c64800103.matfilter1,nil,nil,c64800103.matfilter2,1,99)
local e0=Effect.CreateEffect(c)
e0:SetType(EFFECT_TYPE_CONTINUOUS+EFFECT_TYPE_SINGLE)
e0:SetCode(EVENT_SPSUMMON_SUCCESS)
e0:SetCondition(c64800103.txtcon)
e0:SetOperation(c64800103.txtop)
c:RegisterEffect(e0)
--negate
local e1=Effect.CreateEffect(c)
e1:SetDescription(aux.Stringid(64800103,0))
......@@ -23,6 +29,15 @@ end
function c64800103.matfilter2(c)
return c:IsSynchroType(TYPE_TUNER) or (c:IsSetCard(0x641a) and c:GetSummonLocation()==LOCATION_EXTRA)
end
function c64800103.txtcon(e,tp,eg,ep,ev,re,r,rp)
local c=e:GetHandler()
return c:IsSummonType(SUMMON_TYPE_SYNCHRO)
end
function c64800103.txtop(e,tp,eg,ep,ev,re,r,rp)
Duel.Hint(24,0,aux.Stringid(64800103,3))
Duel.Hint(24,0,aux.Stringid(64800103,4))
Duel.Hint(24,0,aux.Stringid(64800103,5))
end
--e1
function c64800103.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