|
|
|
@@ -1002,3 +1002,30 @@ const clickVictimUpgradeText = { |
|
|
|
"desc": "Gorge on the multiverse" |
|
|
|
} |
|
|
|
}; |
|
|
|
|
|
|
|
// to avoid yoinking stuff from global variables directly... |
|
|
|
|
|
|
|
// state.ownedUpgrades == ownedUpgrades |
|
|
|
// state.resources == resources |
|
|
|
// state.currentProductivity == currentProductivity |
|
|
|
|
|
|
|
const news = [ |
|
|
|
{ |
|
|
|
condition: state => { |
|
|
|
return true; |
|
|
|
}, |
|
|
|
lines: [ |
|
|
|
state => "This is news.", |
|
|
|
state => "This is also news.", |
|
|
|
state => "SPORTS!" |
|
|
|
] |
|
|
|
}, |
|
|
|
{ |
|
|
|
condition: state => { |
|
|
|
return state.resources.food > 100; |
|
|
|
}, |
|
|
|
lines: [ |
|
|
|
state => "You have at least 100 food. Wow!" |
|
|
|
] |
|
|
|
} |
|
|
|
] |