Commit 34a0c9d4 authored by Huangnan's avatar Huangnan

fix

parent 84029cd5
Pipeline #24132 passed with stages
in 29 minutes and 59 seconds
No preview for this file type
......@@ -94,7 +94,7 @@ function c50223215.op3(e,tp,eg,ep,ev,re,r,rp)
local g1=c:GetMutualLinkedGroup()
local sg1=g1:Filter(c50223215.filter,nil)
local ct=sg1:GetCount()
local fct=Duel.GetFieldGroupCount(tp,0,LOCATION_DECK)
local fct=Duel.GetFieldGroupCount(tp,LOCATION_DECK,0)
if fct>ct then fct=ct end
if fct>1 then
local tbl={}
......
......@@ -3,7 +3,7 @@ local m=64800081
local cm=_G["c"..m]
function cm.initial_effect(c)
--link summon
aux.AddLinkProcedure(c,nil,3,3,cm.lcheck)
aux.AddLinkProcedure(c,nil,3,4,cm.lcheck)
c:EnableReviveLimit()
--atk/def
local e2=Effect.CreateEffect(c)
......
......@@ -65,7 +65,7 @@ function cm.eqlimit(e,c)
return c==e:GetLabelObject()
end
function cm.tgfilter(c)
return c:IsSetCard(0x412) and not c:IsCode(64800181) and c:IsAbleToHand()
return c:IsSetCard(0x412) and not c:IsCode(64800181) and c:IsAbleToHand() and c:IsType(TYPE_MONSTER)
end
function cm.tgtg(e,tp,eg,ep,ev,re,r,rp,chk)
if chk==0 then return Duel.IsExistingMatchingCard(cm.tgfilter,tp,LOCATION_DECK,0,1,nil) 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