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