瀏覽代碼

Make the food powerup give 60 seconds of food production

tags/v0.0.5
Fen Dweller 5 年之前
父節點
當前提交
f92d1cbc04
沒有發現已知的金鑰在資料庫的簽署中 GPG Key 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": {


Loading…
取消
儲存