|
|
|
@@ -1008,6 +1008,7 @@ const clickVictimUpgradeText = { |
|
|
|
// state.ownedUpgrades == ownedUpgrades |
|
|
|
// state.resources == resources |
|
|
|
// state.currentProductivity == currentProductivity |
|
|
|
// state.belongings == belongings |
|
|
|
|
|
|
|
const news = [ |
|
|
|
{ |
|
|
|
@@ -1027,5 +1028,21 @@ const news = [ |
|
|
|
lines: [ |
|
|
|
state => "You have at least 100 food. Wow!" |
|
|
|
] |
|
|
|
}, |
|
|
|
{ |
|
|
|
condition: state => { |
|
|
|
return state.currentProductivity.food > 100; |
|
|
|
}, |
|
|
|
lines: [ |
|
|
|
state => "You're eating more than 100 food per second. Wow!" |
|
|
|
] |
|
|
|
}, |
|
|
|
{ |
|
|
|
condition: state => { |
|
|
|
return state.belongings.micro.count >= 50; |
|
|
|
}, |
|
|
|
lines: [ |
|
|
|
state => "You have at least 50 micros. Wow!" |
|
|
|
] |
|
|
|
} |
|
|
|
] |