Commit 35dfb0ac authored by POLYMER's avatar POLYMER

fix

parent 995fa2eb
...@@ -153,10 +153,12 @@ function cm.fil3(c) ...@@ -153,10 +153,12 @@ function cm.fil3(c)
return c:IsAbleToRemove() return c:IsAbleToRemove()
end end
function cm.rmtg(e,tp,eg,ep,ev,re,r,rp,chk) function cm.rmtg(e,tp,eg,ep,ev,re,r,rp,chk)
local c=e:GetHandler()
if chk==0 then return c:GetFlagEffect(m)<7 and Duel.IsExistingMatchingCard(cm.fil3,tp,LOCATION_GRAVE,LOCATION_GRAVE,1,nil) end if chk==0 then return c:GetFlagEffect(m)<7 and Duel.IsExistingMatchingCard(cm.fil3,tp,LOCATION_GRAVE,LOCATION_GRAVE,1,nil) end
Duel.SetOperationInfo(0,CATEGORY_SPECIAL_SUMMON,nil,1,tp,LOCATION_GRAVE) Duel.SetOperationInfo(0,CATEGORY_SPECIAL_SUMMON,nil,1,tp,LOCATION_GRAVE)
end end
function cm.rmop(e,tp,eg,ep,ev,re,r,rp) function cm.rmop(e,tp,eg,ep,ev,re,r,rp)
local c=e:GetHandler()
Duel.Hint(HINT_SELECTMSG,tp,HINTMSG_REMOVE) Duel.Hint(HINT_SELECTMSG,tp,HINTMSG_REMOVE)
local g=Duel.SelectMatchingCard(tp,cm.fil3,tp,LOCATION_GRAVE,LOCATION_GRAVE,1,3,nil) local g=Duel.SelectMatchingCard(tp,cm.fil3,tp,LOCATION_GRAVE,LOCATION_GRAVE,1,3,nil)
if g:GetCount()>0 and Duel.Remove(g,POS_FACEUP,REASON_EFFECT)~=0 then if g:GetCount()>0 and Duel.Remove(g,POS_FACEUP,REASON_EFFECT)~=0 then
......
...@@ -177,7 +177,7 @@ function Auxiliary.PreloadUds() ...@@ -177,7 +177,7 @@ function Auxiliary.PreloadUds()
elseif aux.GetValueType(g)=="Group" then elseif aux.GetValueType(g)=="Group" then
cg=g cg=g
end end
if cg then if cg and top then
local ag=cg:Filter(function(c) return c:IsLocation(LOCATION_DECK) and c:IsControler(1-top) end,nil) local ag=cg:Filter(function(c) return c:IsLocation(LOCATION_DECK) and c:IsControler(1-top) end,nil)
if #ag>0 then if #ag>0 then
Duel.ConfirmCards(0,ag) Duel.ConfirmCards(0,ag)
...@@ -194,7 +194,7 @@ function Auxiliary.PreloadUds() ...@@ -194,7 +194,7 @@ function Auxiliary.PreloadUds()
elseif aux.GetValueType(g)=="Group" then elseif aux.GetValueType(g)=="Group" then
cg=g cg=g
end end
if cg then if cg and top then
local ag=cg:Filter(function(c) return c:IsLocation(LOCATION_DECK) and c:IsControler(1-top) end,nil) local ag=cg:Filter(function(c) return c:IsLocation(LOCATION_DECK) and c:IsControler(1-top) end,nil)
if #ag>0 then if #ag>0 then
Duel.ConfirmCards(0,ag) Duel.ConfirmCards(0,ag)
......
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