X-Git-Url: https://jxself.org/git/?a=blobdiff_plain;ds=sidebyside;f=worlds%2Fbricabrac.scm;h=226d3fc0b84ba32940ea3244691a5e2457280317;hb=ae6e690186b54d9227afbdaf0a3ebaf2eed7f642;hp=d675a711e554d81901dc7f4511ee813fd5072aa0;hpb=79eceeee56e472f9055ca63c12ae2227bd848a2f;p=mudsync.git diff --git a/worlds/bricabrac.scm b/worlds/bricabrac.scm index d675a71..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 @@ -2367,25 +2393,13 @@ you continue on, the feel of the forest seems to shift. As the trees grow thicker the light dims. Eerie laughter echoes through the boughs overhead and you shiver. A warm light to the north beckons you towards it.")) - #:exits - (list (make - #:name "north" - #:to 'vaulted-tunnel) - (make - #:name "south" - #:to 'courtyard))) - ('vaulted-tunnel - #f - #:name "A Vaulted Tunnel of Trees" - #:desc - '((p "You step into the entrance to see two rows of trees with intersecting branches, forming a vaulted tunnel. The fairy lights cast a soft glow on the space. On each tree trunk is a portrait and the eerie laughter you heard outside echoes louder as you pass each portrait. ")) #:exits (list (make #:name "north" #:to 'wedding-entrance) (make #:name "south" - #:to 'forest-clearing))) + #:to 'courtyard))) ('wedding-entrance #f #:name "Entrance to the Wedding" @@ -2401,7 +2415,106 @@ frog sitting atop a hostess podium.")) #:exits (list (make #:name "south" - #:to 'vaulted-tunnel))))) + #:to 'forest-clearing) + (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" + #:desc + '((p "You step into the entrance to see two rows of trees with intersecting branches, forming a vaulted tunnel. The fairy lights cast a soft glow on the space. On each tree trunk is a portrait and the eerie laughter you heard outside echoes louder as you pass each portrait. ")) + #:exits + (list (make + #:name "south" + #:to 'wedding-entrance))) + ('vaulted-tunnel:portrait + 'vaulted-tunnel + #:name "hanging portraits" + #: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")) + ;; ('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.")) + + ))