This website works better with JavaScript.
Home
Explore
Help
Sign In
chemicalcrux
/
gorge
Watch
1
Star
0
Fork
0
Code
Issues
0
Pull Requests
0
Releases
9
Wiki
Activity
Browse Source
Reduce powerup crystal cost; add some food cost. Buff clicking
tags/v0.1.0
Fen Dweller
5 years ago
parent
357b6c4ac8
commit
d86783c280
No known key found for this signature in database
GPG Key ID:
E80B35A6F11C3656
2 changed files
with
3 additions
and
2 deletions
Split View
Diff Options
Show Stats
Download Patch File
Download Diff File
+2
-1
constants.js
+1
-1
gorge.js
+ 2
- 1
constants.js
View File
@@ -556,7 +556,8 @@ function createPowerupFreqUpgrades() {
{ icon: "fa-drumstick-bite", color: powerupFreqColors[counter - 1] }
],
"cost": {
"powerups": 5 * counter
"food": Math.pow(10, counter+3),
"powerups": Math.pow(counter, 2)
},
"effects": [
{
+ 1
- 1
gorge.js
View File
@@ -26,7 +26,7 @@ const clickPowers = {
clickBonus: 0,
clickMultiplier: 1,
clickVictim: "micro",
clickSeconds:
5
clickSeconds:
10
}
Write
Preview
Loading…
Cancel
Save