浏览代码

Make the food powerup give 60 seconds of food production

tags/v0.0.5
Fen Dweller 5 年前
父节点
当前提交
f92d1cbc04
找不到此签名对应的密钥 GPG 密钥 ID: E80B35A6F11C3656
共有 1 个文件被更改,包括 2 次插入2 次删除
  1. +2
    -2
      constants.js

+ 2
- 2
constants.js 查看文件

@@ -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": {


正在加载...
取消
保存