ソースを参照

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


読み込み中…
キャンセル
保存