新增一个彩蛋模式

This commit is contained in:
MrZ626
2021-09-26 01:18:18 +08:00
parent 52bb86ad78
commit f475fafbf1
12 changed files with 81 additions and 2 deletions

20
parts/modes/sprintMD.lua Normal file
View File

@@ -0,0 +1,20 @@
return{
color=COLOR.green,
env={
drop=60,lock=60,
eventSet='sprintMD',
bg='aura',bgm='waterfall',
},
getRank=function(P)
if P.stat.row<40 then return end
local T=P.stat.time
return
T<=30 and 5 or
T<=42 and 5 or
T<=60 and 4 or
T<=100 and 3 or
T<=150 and 2 or
T<=210 and 1 or
0
end,
}