Commit 294109ad authored by mercury233's avatar mercury233 Committed by GitHub

fix ジャンク・コネクター

parent a57ad093
......@@ -2,7 +2,7 @@
function c37337327.initial_effect(c)
--link summon
c:EnableReviveLimit()
aux.AddLinkProcedure(c,aux.FilterBoolFunction(Card.IsLinkRace,RACE_WARRIOR+RACE_MACHINE),2,2,c37337327.lcheck)
aux.AddLinkProcedure(c,c37337327.mfilter,2,2,c37337327.lcheck)
--synchro effect
local e1=Effect.CreateEffect(c)
e1:SetDescription(aux.Stringid(37337327,0))
......@@ -27,6 +27,9 @@ function c37337327.initial_effect(c)
e2:SetOperation(c37337327.spop)
c:RegisterEffect(e2)
end
function c37337327.mfilter(c)
return c:IsType(TYPE_EFFECT) and c:IsLinkRace(RACE_WARRIOR+RACE_MACHINE)
end
function c37337327.lcheck(g,lc)
return g:IsExists(Card.IsLinkType,1,nil,TYPE_TUNER)
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