Wedding grounds
authorChristine Lemmer-Webber <cwebber@dustycloud.org>
Wed, 21 Sep 2022 18:42:13 +0000 (14:42 -0400)
committerChristine Lemmer-Webber <cwebber@dustycloud.org>
Wed, 21 Sep 2022 18:42:13 +0000 (14:42 -0400)
worlds/bricabrac.scm

index 1d99181dcd9e23d59b0cb528e2646b1e30ce9849..226d3fc0b84ba32940ea3244691a5e2457280317 100644 (file)
@@ -2337,6 +2337,32 @@ Although towering, they seem passable."))
 ;;; WEDDING TIME
 ;;; ============
 
+(define wedding-map-text
+  "\
+                   Banquet
+                   &Stairs
+                 (========)
+            .----.\\======/=.----.
+ Fairy     -     : \\====/ :     -
+  Go     ./      :  )==(  :      \\.  Orchestra
+ Round  / (&&&)  : (/==\\) : & & &  \\
+       /         :        :         \\
+       .--------..--------..--------.
+      |  _   _  .'        '.   ,,,   ;
+Photo | | | |_| :  Dance   :  .|_|.  | Cake
+      | '-'     :  Floor   :  |___|  |
+      ',-------.\\         ;.--------,'
+       ;   ..    '.......'         ;
+        \\  ||))    .-=-.     ^   */
+         \\.||(( ^ //   \\\\^ *  ^'./
+     Play '.  ^  ;;     ;;^  ^.,'
+    Ground  +----||-----||----+  Flowers
+            | .---.           |
+            | |_ _|       [F] |
+            |   |             |
+            |      Entrance   |
+            '-----------------'")
+
 (define wedding
   (lol
    ;; Courtyard
@@ -2393,6 +2419,14 @@ frog sitting atop a hostess podium."))
          (make <exit>
            #:name "north"
            #:to 'vaulted-tunnel)))
+   ;; map
+   ('wedding-entrance:map
+    <readable> 'wedding-entrance
+    #:name "wedding map"
+    #:desc '("This appears to be a map of the wedding grounds. "
+             "You could read it if you want to.")
+    #:read-text `(pre ,wedding-map-text)
+    #:goes-by '("map" "wedding map"))
    ('vaulted-tunnel
     <room> #f
     #:name "A Vaulted Tunnel of Trees"
@@ -2408,7 +2442,79 @@ frog sitting atop a hostess podium."))
     #:desc
     "Each portrait shows a hazy image of a fairy in various modes of dress from Victorian to today's current fashions. The style and format of the photographs all look the same."
     #:goes-by
-    '("hanging portrait" "hanging portraits" "portrait" "portraits"))))
+    '("hanging portrait" "hanging portraits" "portrait" "portraits"))
+   ;; ('ballroom
+;;     <room> #f
+;;     #:name "The Ballroom"
+;;     #:desc
+;;     '((p "You emerge into a clearing with six trees encircling a magical ballroom.
+;; At the center is a dance floor where fairies are dancing in rows of concentric
+;; circles. The lights that appear in unstructured smatterings throughout the mystical
+;; space have formed themselves into an elaborate chandelier above the dancers."))
+;;     #:exits
+;;     (list (make <exit>
+;;         #:name "south"
+;;         #:to 'vaulted-tunnel)
+;;       (make <exit>
+;;         #:name "east"
+;;         #:to 'east-ballroom)
+;;       (make <exit>
+;;         #:name "west"
+;;         #:to 'west-ballroom)
+;;       (make <exit>
+;;         #:name "north"
+;;         #:to 'north-ballroom)
+;;       ;; and north of that, the stairwell
+;;       (make <exit>
+;;         #:name "northeast"
+;;         #:to 'orchestra)
+;;       (make <exit>
+;;         #:name "southeast"
+;;         #:to 'wildflowers)
+;;       (make <exit>
+;;         #:name "southwest"
+;;         #:to 'playground)
+;;       (make <exit>
+;;         #:name "west"
+;;         #:to 'photo-studio)
+;;       (make <exit>
+;;         #:name "northwest"
+;;         #:to 'fairy-go-round) ; fgr
+         
+;;       (make <exit>
+;;         #:name "")
+
+;;       (make <exit>
+;;         #:name "south"
+;;         #:to 'vaulted-tunnel)
+;;       (make <exit>
+;;         #:name "south"
+;;         #:to 'vaulted-tunnel)
+;;       (make <exit>
+;;         #:name "south"
+;;         #:to 'vaulted-tunnel)
+;;       (make <exit>
+;;         #:name "south"
+;;         #:to 'vaulted-tunnel)
+;;       (make <exit>
+;;         #:name "south"
+;;         #:to 'vaulted-tunnel)
+;;       ))
+
+;;    ('ballroom
+;;     <room> #f
+;;     #:name "The Ballroom"
+;;     #:exits (list
+;;          (make <exit>
+;;            )
+;;          [north entrance]
+;;              [east entrance]
+            
+;;              [south vaulted-tunnel]
+;;              [west entrance])
+;;      #:desc ("You emerge into a clearing with six trees encircling a magical ballroom. At the center is a dance floor where " (cast dancers "fairies") " are dancing in rows of concentric circles. The lights that appear in unstructured smatterings throughout the mystical space have formed themselves into an elaborate chandelier above the dancers."))
+
+   ))
 
 
 \f