Commit 835f2db2 authored by xiaoye's avatar xiaoye

fixed

parent ce312228
......@@ -20,7 +20,7 @@ function cm.operation(e,tp,eg,ep,ev,re,r,rp)
local g=Duel.GetDecktopGroup(tp,1)
local tc=vgf.ReturnCard(g)
Duel.DisableShuffleCheck()
if vgf.IsCanBeCalled(tc,e,tp) and tc:IsLevel(0,1,2) then
if vgf.IsCanBeCalled(tc,e,tp) and tc:IsLevelBelow(2) then
vgf.Sendto(LOCATION_MZONE,g,0,tp)
else
vgf.Sendto(LOCATION_OVERLAY,g,c)
......
......@@ -18,7 +18,7 @@ function cm.operation(e,tp,eg,ep,ev,re,r,rp)
end
--效果二召唤等级筛选
function cm.filter2(c)
return c:IsLevel(0,1,2)
return c:IsLevelBelow(2)
end
--计数爆发1,灵魂爆发1
function cm.cost(e,tp,eg,ep,ev,re,r,rp,chk)
......
......@@ -33,5 +33,5 @@ function cm.operation2(e,tp,eg,ep,ev,re,r,rp)
end
--效果二召唤等级筛选
function cm.filter2(c)
return c:IsLevel(0,1,2,3)
return c:IsLevelBelow(3)
end
\ No newline at end of file
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