Browse Source

Reduce powerup crystal cost; add some food cost. Buff clicking

tags/v0.1.0
Fen Dweller 5 years ago
parent
commit
d86783c280
No known key found for this signature in database GPG Key ID: E80B35A6F11C3656
2 changed files with 3 additions and 2 deletions
  1. +2
    -1
      constants.js
  2. +1
    -1
      gorge.js

+ 2
- 1
constants.js View File

@@ -556,7 +556,8 @@ function createPowerupFreqUpgrades() {
{ icon: "fa-drumstick-bite", color: powerupFreqColors[counter - 1] } { icon: "fa-drumstick-bite", color: powerupFreqColors[counter - 1] }
], ],
"cost": { "cost": {
"powerups": 5 * counter
"food": Math.pow(10, counter+3),
"powerups": Math.pow(counter, 2)
}, },
"effects": [ "effects": [
{ {


+ 1
- 1
gorge.js View File

@@ -26,7 +26,7 @@ const clickPowers = {
clickBonus: 0, clickBonus: 0,
clickMultiplier: 1, clickMultiplier: 1,
clickVictim: "micro", clickVictim: "micro",
clickSeconds: 5
clickSeconds: 10
} }






Loading…
Cancel
Save