Update description of the driveway

This commit is contained in:
Andrew Miner
2018-05-28 15:55:29 -06:00
parent 2e7772b488
commit a7b7df482a
+8 -7
View File
@@ -18,21 +18,22 @@ hose.description = "It's a pretty ordinary garden hose about 20' long."
driveway = s.addLocation("Driveway") driveway = s.addLocation("Driveway")
driveway.description = driveway.description =
"The driveway extends slightly uphill a short way to the west back to the street. At this part, it's recessed a "The driveway extends slightly uphill a short way to the west back to the street. At this part, it's recessed a
little below the level of the lawn with a stone wall defining the boundary. To the east are three garage doors which little below the level of the lawn with a stone wall defining the boundary. To the south are three garage doors
make up the entire side of the house. Above the doors are a few windows. The back yard is to the east, and the which make up the entire side of the house. Above the doors are a few windows. The back yard is to the east, and
front porch is to the south." the some steps lead up to the front porch to the southwest."
driveway.addItem(hose) driveway.addItem(hose)
frontPorch = s.addLocation("Front Porch") frontPorch = s.addLocation("Front Porch")
frontPorch.description = frontPorch.description =
"You're standing on the front porch. It's a wooden deck with a slight overhang above, and a railing all about. A "You're standing on the front porch. It's a large wooden deck with an overhang above, and a railing all about. To
double door is in front of you with a fancy crystal inset in the windows. There's a light on inside the house, but the north, a staircase leads down a dozen steps or so to the driveway. To the south double door leads inside the
you can't make out any details." house. It has a fancy crystal inset in the windows, so while you can see a light on inside the house, you can't make
out any details."
frontPorch.addItem(boxOfTile) frontPorch.addItem(boxOfTile)
# Configure Map ######################################################################################################## # Configure Map ########################################################################################################
driveway.addTransition("southwest", frontPorch) driveway.addTransition("southwest", frontPorch)
frontPorch.addTransition("northeast", driveway) frontPorch.addTransition("north", driveway)
s.currentLocation = frontPorch s.currentLocation = frontPorch