1
0
mirror of https://github.com/zenorogue/hyperrogue.git synced 2024-10-18 06:30:41 +00:00

bringris:: rescaled score

This commit is contained in:
Zeno Rogue 2024-08-24 15:54:09 +02:00
parent 7f26688f70
commit 76ba2b9068

View File

@ -804,7 +804,7 @@ void find_lines() {
if(!to_disappear.empty()) {
move_at = ticks + collect_animation;
state = tsCollect;
score += 10000000. * points * (points+1.) / current_move_time_limit();
score += 100000. * points * (points+1.) / current_move_time_limit();
completed += points;
playSound(cwt.at, points == 1 ? "pickup-gold" : "orb-mind");
}
@ -844,7 +844,7 @@ void fallen() {
cubes += isize(piecelist[shape_id].code)+1;
state = tsBetween;
playSound(cwt.at, "closegate");
score += 20000000. / (current_move_time_limit() * 3 + ticks - move_started);
score += 200000. / (current_move_time_limit() * 3 + ticks - move_started);
}
void drop() {