Commit f200924e authored by Tachibana's avatar Tachibana

1145141919810

parent 6041336f
Pipeline #14610 passed with stages
in 24 minutes and 39 seconds
......@@ -63,11 +63,11 @@ end
function cm.filter2(c,tp,lv)
local rlv=lv-c:GetLevel()
local rg=Duel.GetMatchingGroup(cm.filter3,tp,LOCATION_REMOVED,0,c)
return rlv>0 and not c:IsType(TYPE_TUNER) and c:IsSetCard(0xb81,0xa01,0x480) and c:IsAbleToDeck() and c:IsFaceup()
return rlv>0 and c:IsType(TYPE_TUNER) and c:IsAbleToDeck() and c:IsFaceup() and not c:IsType(TYPE_LINK)
and rg:CheckWithSumEqual(Card.GetLevel,rlv,1,99)
end
function cm.filter3(c)
return c:GetLevel()>0 and c:IsType(TYPE_TUNER) and c:IsAbleToDeck() and c:IsFaceup()
return c:GetLevel()>0 and not c:IsType(TYPE_TUNER) and c:IsAbleToDeck() and c:IsFaceup() and c:IsSetCard(0xb81,0xa01,0x480)
end
function cm.target(e,tp,eg,ep,ev,re,r,rp,chk)
if chk==0 then return Duel.IsExistingMatchingCard(cm.filter1,tp,LOCATION_EXTRA,0,1,nil,e,tp) and e:GetHandler():GetFlagEffect(m)~=0 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