Files
Techmino/parts/modes/stack_100l.lua
MrZ626 20cd27d7f6 再微调大量模式的左侧信息显示
stack模式左侧信息添加"块数"标签
2021-08-09 03:16:40 +08:00

31 lines
699 B
Lua

return{
color=COLOR.cyan,
env={
drop=60,lock=60,
freshLimit=15,
fieldH=100,
highCam=true,
fillClear=false,
seqData={1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25},
sequence='bag',
bg='none',bgm='there',
},
mesDisp=function(P)
setFont(60)
mStr(P.stat.piece,63,280)
mText(drawableText.piece,63,350)
end,
score=function(P)return{P.stat.piece,P.stat.time}end,
scoreDisp=function(D)return D[1].." Pieces".." "..STRING.time(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)
local B=P.stat.piece
return
B>=215 and 5 or
B>=208 and 4 or
B>=200 and 3 or
B>=190 and 2 or
B>=180 and 1 or
0
end,
}