32 lines
868 B
Lua
32 lines
868 B
Lua
return{
|
|
color=COLOR.black,
|
|
env={
|
|
noTele=true,
|
|
das=5,arr=1,
|
|
nextCount=2,
|
|
sequence='his',
|
|
mission={4,4,4,64},
|
|
missionKill=true,
|
|
freshLimit=12,
|
|
noInitSZO=true,
|
|
eventSet='master_ph',
|
|
bg='blockspace',bgm='super7th',
|
|
},
|
|
slowMark=true,
|
|
mesDisp=function(P)
|
|
PLY.draw.drawProgress(P.modeData.pt,P.modeData.target)
|
|
end,
|
|
score=function(P)return{P.result=='win'and 260 or P.modeData.pt,P.stat.time}end,
|
|
scoreDisp=function(D)return D[1].."P "..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 p=P.modeData.pt
|
|
return
|
|
P.result=='win'and 5 or
|
|
p>=226 and 4 or
|
|
p>=162 and 3 or
|
|
p>=62 and 2 or
|
|
p>=42 and 1 or
|
|
p>=26 and 0
|
|
end,
|
|
} |