| @@ -1484,30 +1484,30 @@ const powerups = { | |||||
| description: "Tasty!", | description: "Tasty!", | ||||
| icon: "fa-drumstick-bite", | icon: "fa-drumstick-bite", | ||||
| prereqs: state => true, | prereqs: state => true, | ||||
| effect: state => state.resources.food += state.currentProductivity.food * 60, | |||||
| effect: state => state.resources.food += state.currentProductivity.food * 300, | |||||
| popup: (self, e) => { | popup: (self, e) => { | ||||
| clickPopup("GULP!", "gulp", [e.clientX, e.clientY]); | clickPopup("GULP!", "gulp", [e.clientX, e.clientY]); | ||||
| clickPopup("+60 seconds of food", "food", [e.clientX, e.clientY]); | |||||
| clickPopup("+300 seconds of food", "food", [e.clientX, e.clientY]); | |||||
| } | } | ||||
| }, | }, | ||||
| "double": { | "double": { | ||||
| name: "Double Dip", | name: "Double Dip", | ||||
| description: "Doubled productivity!", | |||||
| description: "Quintupled productivity!", | |||||
| icon: "fa-cogs", | icon: "fa-cogs", | ||||
| duration: 10000, | |||||
| duration: 30000, | |||||
| prereqs: state => true, | prereqs: state => true, | ||||
| effect: state => state.currentProductivity.food *= 2, | |||||
| effect: state => state.currentProductivity.food *= 5, | |||||
| popup: (self, e) => { | popup: (self, e) => { | ||||
| clickPopup("VROOM!", "gulp", [e.clientX, e.clientY]); | clickPopup("VROOM!", "gulp", [e.clientX, e.clientY]); | ||||
| } | } | ||||
| }, | }, | ||||
| "click": { | "click": { | ||||
| name: "Chaos Click", | name: "Chaos Click", | ||||
| description: "Ten times the clicking!", | |||||
| description: "A hundred times the clicking!", | |||||
| icon: "fa-hand-pointer", | icon: "fa-hand-pointer", | ||||
| duration: 10000, | |||||
| duration: 20000, | |||||
| prereqs: state => true, | prereqs: state => true, | ||||
| effect: state => state.clickPowers.clickMultiplier *= 10, | |||||
| effect: state => state.clickPowers.clickMultiplier *= 100, | |||||
| popup: (self, e) => clickPopup("CLICK TIME!!", "gulp", [e.clientX, e.clientY]) | popup: (self, e) => clickPopup("CLICK TIME!!", "gulp", [e.clientX, e.clientY]) | ||||
| } | } | ||||
| } | } | ||||