Skip to content

Commit

Permalink
Adjust Dig Efficiency rank cutoffs (#965)
Browse files Browse the repository at this point in the history
  • Loading branch information
Not-A-Normal-Robot authored Sep 11, 2023
1 parent 452fa65 commit a3e5ccf
Show file tree
Hide file tree
Showing 4 changed files with 16 additions and 16 deletions.
10 changes: 5 additions & 5 deletions parts/modes/dig_eff_100l.lua
Original file line number Diff line number Diff line change
Expand Up @@ -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,
}
4 changes: 2 additions & 2 deletions parts/modes/dig_eff_10l.lua
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
10 changes: 5 additions & 5 deletions parts/modes/dig_eff_400l.lua
Original file line number Diff line number Diff line change
Expand Up @@ -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,
}
8 changes: 4 additions & 4 deletions parts/modes/dig_eff_40l.lua
Original file line number Diff line number Diff line change
Expand Up @@ -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,
}

0 comments on commit a3e5ccf

Please sign in to comment.