Browse Source

Make the food powerup give 60 seconds of food production

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

+ 2
- 2
constants.js View File

@@ -1114,10 +1114,10 @@ const powerups = {
name: "Free Food",
description: "Tasty!",
icon: "fa-drumstick-bite",
effect: state => state.resources.food += 10000,
effect: state => state.resources.food += state.currentProductivity.food * 60,
popup: (self, e) => {
clickPopup("GULP!", "gulp", [e.clientX, e.clientY]);
clickPopup("+10000 food", "food", [e.clientX, e.clientY]);
clickPopup("+60 seconds of food", "food", [e.clientX, e.clientY]);
}
},
"free-car": {


Loading…
Cancel
Save