소스 검색

Make the food powerup give 60 seconds of food production

tags/v0.0.5
Fen Dweller 5 년 전
부모
커밋
f92d1cbc04
No known key found for this signature in database 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": {


불러오는 중...
취소
저장