Commit 4870bf98 authored by nanahira's avatar nanahira

fix

parent 4bea6427
...@@ -5,6 +5,12 @@ function cm.initial_effect(c) ...@@ -5,6 +5,12 @@ function cm.initial_effect(c)
c:EnableReviveLimit() c:EnableReviveLimit()
Senya.AddSummonMusic(c,m*16+2,SUMMON_TYPE_XYZ) Senya.AddSummonMusic(c,m*16+2,SUMMON_TYPE_XYZ)
aux.AddXyzProcedureLevelFree(c,function(c) return c:IsType(TYPE_XYZ) and c:IsLink(8) end,nil,1,1) aux.AddXyzProcedureLevelFree(c,function(c) return c:IsType(TYPE_XYZ) and c:IsLink(8) end,nil,1,1)
local e1=Effect.CreateEffect(c)
e1:SetProperty(EFFECT_FLAG_CANNOT_DISABLE+EFFECT_FLAG_UNCOPYABLE)
e1:SetType(EFFECT_TYPE_SINGLE)
e1:SetCode(EFFECT_SPSUMMON_CONDITION)
e1:SetValue(aux.xyzlimit)
c:RegisterEffect(e1)
local e3=Effect.CreateEffect(c) local e3=Effect.CreateEffect(c)
e3:SetDescription(aux.Stringid(m,0)) e3:SetDescription(aux.Stringid(m,0))
e3:SetType(EFFECT_TYPE_QUICK_O) e3:SetType(EFFECT_TYPE_QUICK_O)
......
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