mirror of
https://github.com/tonytins/citylimits
synced 2025-12-15 20:54:43 -05:00
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:
parent
8b37060d5c
commit
986789ae5d
19 changed files with 400 additions and 46 deletions
|
|
@ -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)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue