From a3e5ccffa4406e54334c02c3fe7f88662933d54e Mon Sep 17 00:00:00 2001 From: NOT_A_ROBOT Date: Mon, 11 Sep 2023 17:04:22 +0700 Subject: [PATCH] Adjust Dig Efficiency rank cutoffs (#965) --- parts/modes/dig_eff_100l.lua | 10 +++++----- parts/modes/dig_eff_10l.lua | 4 ++-- parts/modes/dig_eff_400l.lua | 10 +++++----- parts/modes/dig_eff_40l.lua | 8 ++++---- 4 files changed, 16 insertions(+), 16 deletions(-) diff --git a/parts/modes/dig_eff_100l.lua b/parts/modes/dig_eff_100l.lua index 18be35b1..f3b38d08 100644 --- a/parts/modes/dig_eff_100l.lua +++ b/parts/modes/dig_eff_100l.lua @@ -13,11 +13,11 @@ return { if P.stat.dig<100 then return end local P=P.stat.piece return - P<=260 and 5 or - P<=320 and 4 or - P<=420 and 3 or - P<=520 and 2 or - P<=620 and 1 or + P<=250 and 5 or + P<=300 and 4 or + P<=370 and 3 or + P<=450 and 2 or + P<=550 and 1 or 0 end, } diff --git a/parts/modes/dig_eff_10l.lua b/parts/modes/dig_eff_10l.lua index 3a7630c7..4caa0a24 100644 --- a/parts/modes/dig_eff_10l.lua +++ b/parts/modes/dig_eff_10l.lua @@ -13,8 +13,8 @@ return { if P.stat.dig<10 then return end local P=P.stat.piece return - P<=12 and 5 or - P<=18 and 4 or + P<=14 and 5 or + P<=20 and 4 or P<=25 and 3 or P<=30 and 2 or P<=40 and 1 or diff --git a/parts/modes/dig_eff_400l.lua b/parts/modes/dig_eff_400l.lua index 95975566..c2b1432f 100644 --- a/parts/modes/dig_eff_400l.lua +++ b/parts/modes/dig_eff_400l.lua @@ -13,11 +13,11 @@ return { if P.stat.dig<400 then return end local P=P.stat.piece return - P<=1200 and 5 or - P<=1400 and 4 or - P<=1500 and 3 or - P<=1800 and 2 or - P<=2000 and 1 or + P<=1120 and 5 or + P<=1280 and 4 or + P<=1440 and 3 or + P<=1600 and 2 or + P<=1800 and 1 or 0 end, } diff --git a/parts/modes/dig_eff_40l.lua b/parts/modes/dig_eff_40l.lua index b6b4398a..5c15e492 100644 --- a/parts/modes/dig_eff_40l.lua +++ b/parts/modes/dig_eff_40l.lua @@ -13,11 +13,11 @@ return { if P.stat.dig<40 then return end local P=P.stat.piece return - P<=80 and 5 or - P<=100 and 4 or - P<=120 and 3 or + P<=95 and 5 or + P<=115 and 4 or + P<=130 and 3 or P<=160 and 2 or - P<=220 and 1 or + P<=200 and 1 or 0 end, }