Commit 41eaadbe authored by wind2009's avatar wind2009

Fix ディノベーダー・ドクス

Cannot release monster level above 5
parent 35154f6f
......@@ -39,7 +39,7 @@ function s.spop(e,tp,eg,ep,ev,re,r,rp)
Duel.SpecialSummon(c,0,tp,tp,false,false,POS_FACEUP)
end
function s.costfilter(c,e,tp)
return c:GetLevel()>=1
return c:GetLevel()>=1 and c:GetLevel()<=4
and Duel.GetMZoneCount(tp,c)>0 and (c:IsControler(tp) or c:IsFaceup())
and Duel.IsExistingMatchingCard(s.spfilter,tp,LOCATION_DECK,0,1,nil,e,tp,c:GetLevel())
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