消四挖掘模式非挖掘的消四越多会导致评分降低

This commit is contained in:
MrZ_26
2024-06-11 17:29:03 +08:00
parent 0b7c2fa59b
commit 94d2af685c
2 changed files with 3 additions and 2 deletions

View File

@@ -35,13 +35,13 @@ return {
comp=function(a,b) return a[1]>b[1] or a[1]==b[1] and a[2]<b[2] end,
getRank=function(P)
local dig=P.stat.dig_quad
if dig<=1 then return end
return
return MATH.clamp((
dig==10 and 5 or
dig>=7 and 4 or
dig>=5 and 3 or
dig>=3 and 2 or
dig>=2 and 1 or
0
)-math.floor((P.stat.clears[4]-P.stat.dig_quad)^.62),0,5)
end,
}