新增一个彩蛋模式

This commit is contained in:
MrZ626
2021-09-30 01:13:43 +08:00
parent 3d4c51c532
commit 43db02f97d
13 changed files with 78 additions and 2 deletions

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

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