From ae6e690186b54d9227afbdaf0a3ebaf2eed7f642 Mon Sep 17 00:00:00 2001 From: Christine Lemmer-Webber Date: Wed, 21 Sep 2022 14:42:13 -0400 Subject: [PATCH] Wedding grounds --- worlds/bricabrac.scm | 108 ++++++++++++++++++++++++++++++++++++++++++- 1 file changed, 107 insertions(+), 1 deletion(-) diff --git a/worlds/bricabrac.scm b/worlds/bricabrac.scm index 1d99181..226d3fc 100644 --- a/worlds/bricabrac.scm +++ b/worlds/bricabrac.scm @@ -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 #:name "north" #:to 'vaulted-tunnel))) + ;; map + ('wedding-entrance:map + '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 #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 +;; #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 +;; #:name "south" +;; #:to 'vaulted-tunnel) +;; (make +;; #:name "east" +;; #:to 'east-ballroom) +;; (make +;; #:name "west" +;; #:to 'west-ballroom) +;; (make +;; #:name "north" +;; #:to 'north-ballroom) +;; ;; and north of that, the stairwell +;; (make +;; #:name "northeast" +;; #:to 'orchestra) +;; (make +;; #:name "southeast" +;; #:to 'wildflowers) +;; (make +;; #:name "southwest" +;; #:to 'playground) +;; (make +;; #:name "west" +;; #:to 'photo-studio) +;; (make +;; #:name "northwest" +;; #:to 'fairy-go-round) ; fgr + +;; (make +;; #:name "") + +;; (make +;; #:name "south" +;; #:to 'vaulted-tunnel) +;; (make +;; #:name "south" +;; #:to 'vaulted-tunnel) +;; (make +;; #:name "south" +;; #:to 'vaulted-tunnel) +;; (make +;; #:name "south" +;; #:to 'vaulted-tunnel) +;; (make +;; #:name "south" +;; #:to 'vaulted-tunnel) +;; )) + +;; ('ballroom +;; #f +;; #:name "The Ballroom" +;; #:exits (list +;; (make +;; ) +;; [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.")) + + )) -- 2.31.1