mirror of
https://github.com/zenorogue/hyperrogue.git
synced 2025-08-04 21:04:02 +00:00
bringris:: rescaled score
This commit is contained in:
parent
7f26688f70
commit
76ba2b9068
@ -804,7 +804,7 @@ void find_lines() {
|
|||||||
if(!to_disappear.empty()) {
|
if(!to_disappear.empty()) {
|
||||||
move_at = ticks + collect_animation;
|
move_at = ticks + collect_animation;
|
||||||
state = tsCollect;
|
state = tsCollect;
|
||||||
score += 10000000. * points * (points+1.) / current_move_time_limit();
|
score += 100000. * points * (points+1.) / current_move_time_limit();
|
||||||
completed += points;
|
completed += points;
|
||||||
playSound(cwt.at, points == 1 ? "pickup-gold" : "orb-mind");
|
playSound(cwt.at, points == 1 ? "pickup-gold" : "orb-mind");
|
||||||
}
|
}
|
||||||
@ -844,7 +844,7 @@ void fallen() {
|
|||||||
cubes += isize(piecelist[shape_id].code)+1;
|
cubes += isize(piecelist[shape_id].code)+1;
|
||||||
state = tsBetween;
|
state = tsBetween;
|
||||||
playSound(cwt.at, "closegate");
|
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() {
|
void drop() {
|
||||||
|
Loading…
x
Reference in New Issue
Block a user