| @@ -653,7 +653,7 @@ function toggle_verbose() | |||||
| { | { | ||||
| verbose = !verbose; | verbose = !verbose; | ||||
| document.getElementById("button-verbose").innerHTML = "Descriptions: " + (verbose ? "Verbose" : "Simple"); | |||||
| document.getElementById("button-verbose").innerHTML = (verbose ? "Verbose" : "Simple"); | |||||
| } | } | ||||
| function toggle_arousal() | function toggle_arousal() | ||||
| @@ -868,6 +868,8 @@ function Town(count = 1) { | |||||
| this.addContent("Car",250,3750,count); | this.addContent("Car",250,3750,count); | ||||
| this.addContent("Bus",50,150,count); | |||||
| this.addContent("Train",5,10,count); | this.addContent("Train",5,10,count); | ||||
| this.addContent("Small Skyscraper",2,10,count); | this.addContent("Small Skyscraper",2,10,count); | ||||
| @@ -898,6 +900,8 @@ function City(count = 1) { | |||||
| this.addContent("Car",2500,37500,count); | this.addContent("Car",2500,37500,count); | ||||
| this.addContent("Bus",150,500,count); | |||||
| this.addContent("Train",50,100,count); | this.addContent("Train",50,100,count); | ||||
| this.addContent("Tram",100,300,count); | this.addContent("Tram",100,300,count); | ||||
| @@ -88,7 +88,7 @@ | |||||
| <button class=action-button id=button-location>Location: Suburb</button> | <button class=action-button id=button-location>Location: Suburb</button> | ||||
| <button class=action-button class=action-button id=button-numbers>Numbers: Full</button> | <button class=action-button class=action-button id=button-numbers>Numbers: Full</button> | ||||
| <button class=action-button class=action-button id=button-units>Units: Metric</button> | <button class=action-button class=action-button id=button-units>Units: Metric</button> | ||||
| <button class=action-button id=button-verbose>Descriptions: Verbose</button> | |||||
| <button class=action-button id=button-verbose>Verbose</button> | |||||
| <button class=action-button id=button-grow-lots>Get WAY Bigger</button> | <button class=action-button id=button-grow-lots>Get WAY Bigger</button> | ||||
| </div> | </div> | ||||