Commit e9e24d7a authored by Grajade's avatar Grajade

Update c74561014.lua

parent e1271b11
Pipeline #15375 passed with stage
in 16 seconds
......@@ -30,6 +30,7 @@ function cCardno.initial_effect(c)
local e3=Effect.CreateEffect(c)
e3:SetType(EFFECT_TYPE_SINGLE+EFFECT_TYPE_CONTINUOUS)
e3:SetCode(EVENT_SPSUMMON_SUCCESS)
e3:SetCondition(cCardno.spcon)
e3:SetOperation(cCardno.spop)
c:RegisterEffect(e3)
......@@ -120,6 +121,9 @@ function cCardno.synlimit(e,c)
if not c:IsSetCard(0x5208) then return true end
end
--
function cCardno.spcon(e,tp,eg,ep,ev,re,r,rp)
return e:GetHandler():IsSummonType(SUMMON_TYPE_LINK)
end
function cCardno.spop(e,tp,eg,ep,ev,re,r,rp)
local c=e:GetHandler()
local e3_1=Effect.CreateEffect(c)
......
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