From a7b7df482a36a83b48d337d53a861f73ae921c25 Mon Sep 17 00:00:00 2001 From: Andrew Miner Date: Mon, 28 May 2018 15:55:29 -0600 Subject: [PATCH] Update description of the driveway --- story.coffee | 15 ++++++++------- 1 file changed, 8 insertions(+), 7 deletions(-) diff --git a/story.coffee b/story.coffee index 87337cf..466afde 100644 --- a/story.coffee +++ b/story.coffee @@ -18,21 +18,22 @@ hose.description = "It's a pretty ordinary garden hose about 20' long." driveway = s.addLocation("Driveway") driveway.description = "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 - make up the entire side of the house. Above the doors are a few windows. The back yard is to the east, and the - front porch is to the south." + little below the level of the lawn with a stone wall defining the boundary. To the south are three garage doors + which make up the entire side of the house. Above the doors are a few windows. The back yard is to the east, and + the some steps lead up to the front porch to the southwest." driveway.addItem(hose) frontPorch = s.addLocation("Front Porch") 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 - double door is in front of you with a fancy crystal inset in the windows. There's a light on inside the house, but - you can't make out any details." + "You're standing on the front porch. It's a large wooden deck with an overhang above, and a railing all about. To + the north, a staircase leads down a dozen steps or so to the driveway. To the south double door leads inside the + 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) # Configure Map ######################################################################################################## driveway.addTransition("southwest", frontPorch) -frontPorch.addTransition("northeast", driveway) +frontPorch.addTransition("north", driveway) s.currentLocation = frontPorch