From c2313a5dd0b7f1428b8d9d2fcfe775e453912687 Mon Sep 17 00:00:00 2001 From: Fen Dweller Date: Tue, 24 Dec 2019 21:01:36 -0600 Subject: [PATCH] Nerf powerup frequency upgrades Before, each one multiplied the time between spawns by 0.5 Now, they multiply the time by 0.75, then 0.78, then 0.81, and so forth --- constants.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/constants.js b/constants.js index d7e7971..97633e3 100644 --- a/constants.js +++ b/constants.js @@ -513,7 +513,7 @@ function createPowerupFreqUpgrades() { { "type": "powerup-freq", "id": prefix + counter, - "amount": 0.5 + "amount": 0.75 + 0.03 * (counter - 1) } ], "prereqs": {