限制按键的极简模式从地图改为隐藏模式,目标改为消除40行 close #1060

This commit is contained in:
MrZ_26
2023-12-04 19:50:47 +08:00
parent d3e4d7e62c
commit d06d8ebfff
17 changed files with 38 additions and 217 deletions

View File

@@ -0,0 +1,20 @@
return {
env={
arr=0,
drop=1e99,lock=60,
freshLimit=15,
eventSet='sprint_finesse_lock',
bg='flink',bgm='infinite',
},
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 4 or
T<=62 and 3 or
T<=126 and 2 or
T<=226 and 1 or
0
end,
}

View File

@@ -1,28 +0,0 @@
return {
env={
arr=0,
drop=1e99,lock=60,
freshLimit=15,
bg='flink',bgm='infinite',
eventSet='tech_finesse_lock'
},
slowMark=true,
score=function(P) return {P.stat.atk<=100 and math.floor(P.stat.atk) or 100,P.stat.time} end,
scoreDisp=function(D) return D[1].." Attack "..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 A=P.stat.atk
if A>=100 then
local T=P.stat.time
return
T<50 and 5 or
T<70 and 4 or
T<100 and 3 or
2
else
return
A>=60 and 1 or
A>=30 and 0
end
end,
}

View File

@@ -1,29 +0,0 @@
return {
env={
arr=0,
drop=1e99,lock=60,
b2bKill=true,
freshLimit=15,
bg='flink',bgm='infinite',
eventSet='tech_finesse_lock_f',
},
slowMark=true,
score=function(P) return {P.stat.atk<=100 and math.floor(P.stat.atk) or 100,P.stat.time} end,
scoreDisp=function(D) return D[1].." Attack "..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 A=P.stat.atk
if A>=100 then
local T=P.stat.time
return
T<50 and 5 or
T<70 and 4 or
T<100 and 3 or
2
else
return
A>=60 and 1 or
A>=30 and 0
end
end,
}