修复backfire模式成绩记录错误,ui微调
This commit is contained in:
@@ -20,9 +20,9 @@ return{
|
||||
mesDisp=function(P)
|
||||
setFont(65)
|
||||
mStr(P.stat.atk,69,310)
|
||||
mText(drawableText.atk,69,375)
|
||||
mText(drawableText.atk,69,380)
|
||||
end,
|
||||
score=function(P)return{P.stat.atk<=100 and math.floor(P.stat.atk)or 100,P.stat.atk}end,
|
||||
score=function(P)return{math.min(math.floor(P.stat.atk),100),P.stat.time}end,
|
||||
scoreDisp=function(D)return D[1].." Attack "..TIMESTR(D[2])end,
|
||||
comp=function(a,b)return a[1]>b[1]or a[1]==b[1]and a[2]<b[2]end,
|
||||
getRank=function(P)
|
||||
@@ -30,10 +30,10 @@ return{
|
||||
if L>=100 then
|
||||
local T=P.stat.time
|
||||
return
|
||||
T<45 and 5 or
|
||||
T<60 and 4 or
|
||||
T<90 and 3 or
|
||||
T<120 and 2 or
|
||||
T<50 and 5 or
|
||||
T<65 and 4 or
|
||||
T<100 and 3 or
|
||||
T<130 and 2 or
|
||||
1
|
||||
else
|
||||
return
|
||||
|
||||
@@ -20,9 +20,9 @@ return{
|
||||
mesDisp=function(P)
|
||||
setFont(65)
|
||||
mStr(P.stat.atk,69,310)
|
||||
mText(drawableText.atk,69,375)
|
||||
mText(drawableText.atk,69,380)
|
||||
end,
|
||||
score=function(P)return{P.stat.atk<=100 and math.floor(P.stat.atk)or 100,P.stat.atk}end,
|
||||
score=function(P)return{math.min(math.floor(P.stat.atk),100),P.stat.time}end,
|
||||
scoreDisp=function(D)return D[1].." Attack "..TIMESTR(D[2])end,
|
||||
comp=function(a,b)return a[1]>b[1]or a[1]==b[1]and a[2]<b[2]end,
|
||||
getRank=function(P)
|
||||
@@ -30,7 +30,7 @@ return{
|
||||
if L>=100 then
|
||||
local T=P.stat.time
|
||||
return
|
||||
T<50 and 5 or
|
||||
T<55 and 5 or
|
||||
T<70 and 4 or
|
||||
T<110 and 3 or
|
||||
T<150 and 2 or
|
||||
|
||||
@@ -19,9 +19,9 @@ return{
|
||||
mesDisp=function(P)
|
||||
setFont(65)
|
||||
mStr(P.stat.atk,69,310)
|
||||
mText(drawableText.atk,69,375)
|
||||
mText(drawableText.atk,69,380)
|
||||
end,
|
||||
score=function(P)return{P.stat.atk<=100 and math.floor(P.stat.atk)or 100,P.stat.atk}end,
|
||||
score=function(P)return{math.min(math.floor(P.stat.atk),100),P.stat.time}end,
|
||||
scoreDisp=function(D)return D[1].." Attack "..TIMESTR(D[2])end,
|
||||
comp=function(a,b)return a[1]>b[1]or a[1]==b[1]and a[2]<b[2]end,
|
||||
getRank=function(P)
|
||||
|
||||
@@ -20,9 +20,9 @@ return{
|
||||
mesDisp=function(P)
|
||||
setFont(65)
|
||||
mStr(P.stat.atk,69,310)
|
||||
mText(drawableText.atk,69,375)
|
||||
mText(drawableText.atk,69,380)
|
||||
end,
|
||||
score=function(P)return{P.stat.atk<=100 and math.floor(P.stat.atk)or 100,P.stat.atk}end,
|
||||
score=function(P)return{math.min(math.floor(P.stat.atk),100),P.stat.time}end,
|
||||
scoreDisp=function(D)return D[1].." Attack "..TIMESTR(D[2])end,
|
||||
comp=function(a,b)return a[1]>b[1]or a[1]==b[1]and a[2]<b[2]end,
|
||||
getRank=function(P)
|
||||
|
||||
Reference in New Issue
Block a user