Organized city and advisor dialogs

- Added another existing character, Cindy Diamond, to take over as City Planning now that City Limits officially takes place in Nethington. Zack now handles transport.
- News keys are now properly shuffled after index.
- Updated screenshot to the recent look
- Simplified money cheat
- Updated credits in README
This commit is contained in:
Tony Bark 2021-05-26 10:30:41 -04:00
parent 8b37060d5c
commit 986789ae5d
19 changed files with 400 additions and 46 deletions

View file

@ -17,17 +17,7 @@ func _budget_print(value: int):
return "Budget increased to " + str(value)
func money(value):
var motherlode = 50000
var rosebud = 1000
if value == "motherlode":
SimData.budget += motherlode
return _budget_print(motherlode)
if value == "rosebud":
SimData.budget += rosebud
return _budget_print(rosebud)
return ""
SimData.budget += int(value)
func whereyoufrom(value):
SimData.city_name = str(value)