Commit 7dfe74c3 authored by mercury233's avatar mercury233

fix

parent 959698e2
#The first line is used for comment
!setname 0x290 黄金荣耀 Gold Pride
!setname 0x1052 门之守护神|守护者 Gate Guardian
!setname 0x192 黄金荣耀 Gold Pride
!setname 0x193 至爱 フェイバリット
!setname 0x293 新式魔厨 ヌーベルズ
!setname 0x294 食谱 レシピ
!setname 0x295 至爱 フェイバリット
!setname 0x296 迷宫壁 Labyrinth Wall
!setname 0x297 征服斗魂 VS(ヴァンキッシュ・ソウル)
......@@ -3,7 +3,7 @@
local s,id,o=GetID()
function s.initial_effect(c)
--link summon
aux.AddLinkProcedure(c,aux.FilterBoolFunction(Card.IsSetCard,0x192),2,2,s.lcheck)
aux.AddLinkProcedure(c,s.mfilter,2,2,s.lcheck)
c:EnableReviveLimit()
--destroy
local e1=Effect.CreateEffect(c)
......@@ -29,6 +29,9 @@ function s.initial_effect(c)
e2:SetOperation(s.tdop)
c:RegisterEffect(e2)
end
function s.mfilter(c)
return c:IsLevelAbove(0) and c:IsLinkSetCard(0x192)
end
function s.lcheck(g,lc)
return g:GetClassCount(Card.GetLevel)==g:GetCount()
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