597 lines
19 KiB
Text
597 lines
19 KiB
Text
# The Mist Horn
|
||
|
||
# [[file:../../../projects/mud-adventure.org::*The Mist Horn][The Mist Horn:1]]
|
||
@create Mist Horn:typeclasses.sailing.CallingHorn
|
||
# The Mist Horn:1 ends here
|
||
|
||
|
||
|
||
# And a description if someone looks at:
|
||
|
||
|
||
# [[file:../../../projects/mud-adventure.org::*The Mist Horn][The Mist Horn:2]]
|
||
@desc horn = While physical, this curved horn made from the sea mist, has an amorphous quality. Wonder what would happen if you |gblow|n this horn?
|
||
# The Mist Horn:2 ends here
|
||
|
||
|
||
|
||
# The horn will come and go, and this is controlled by a StoryCube:
|
||
|
||
|
||
# [[file:../../../projects/mud-adventure.org::*The Mist Horn][The Mist Horn:3]]
|
||
@teleport mp06
|
||
#
|
||
@create/drop mp06ctl:typeclasses.puzzles.StoryCube
|
||
#
|
||
@desc mp06ctl = Moves horn to room when character arrives.
|
||
#
|
||
# To make it invisible, we lock the view:
|
||
@lock mp06ctl = view:false()
|
||
# The Mist Horn:3 ends here
|
||
|
||
|
||
|
||
# To make sure other players can use the horn, we need to have it return to its original state. For this, we tether it to the StoryCube, and come up with a lovely excuse why they can’t have it forever:
|
||
|
||
|
||
# [[file:../../../projects/mud-adventure.org::*The Mist Horn][The Mist Horn:4]]
|
||
@lock mist horn = tethered:id(mp06ctl)
|
||
#
|
||
@set mist horn/tethered_msg = "The horn dissipates back into the mist."
|
||
# The Mist Horn:4 ends here
|
||
|
||
|
||
|
||
# When a character arrives at the Lazy Dock and wait, the horn will appear.
|
||
|
||
|
||
# [[file:../../../projects/mud-adventure.org::*The Mist Horn][The Mist Horn:5]]
|
||
@set mp06ctl/arrive = "25 ;; gm The mists gather over the sea. ;; 5 ;; gm The swirling mists coalesce into a shape of a curved horn. ;; 2 ;; teleport mist horn = Lazy Dock ;; gm The curved horn, now physical, drops to the dock."
|
||
# The Mist Horn:5 ends here
|
||
|
||
|
||
|
||
# And let’s put the horn /in/ the StoryCube:
|
||
|
||
|
||
# [[file:../../../projects/mud-adventure.org::*The Mist Horn][The Mist Horn:6]]
|
||
@teleport/quiet mist horn = mp06ctl
|
||
# The Mist Horn:6 ends here
|
||
|
||
|
||
|
||
# And a cleanup command to remove the horn from wherever it is:
|
||
|
||
|
||
# [[file:../../../projects/mud-adventure.org::*The Mist Horn][The Mist Horn:7]]
|
||
@set mp06ctl/cleanup = "@teleport mist horn = me"
|
||
# The Mist Horn:7 ends here
|
||
|
||
|
||
|
||
# And cleanup:
|
||
|
||
|
||
# [[file:../../../projects/mud-adventure.org::*The Mist Horn][The Mist Horn:8]]
|
||
py me.search('mp06ctl').cleanup()
|
||
# The Mist Horn:8 ends here
|
||
|
||
# The Boat
|
||
# When the boat is docked, we should have a special /state/ to describe it:
|
||
|
||
|
||
# [[file:../../../projects/mud-adventure.org::*The Boat][The Boat:1]]
|
||
@teleport/quiet Lazy Dock
|
||
#
|
||
@desc/boat here = The dock you stand on juts into a bay of water the color of lavender flowers. A giant leaf softly bobs in the subtle surf next to the dock. Perhaps one could use this to sail across this sea?
|
||
# The Boat:1 ends here
|
||
|
||
|
||
|
||
# A boat on the sea is a separate room.
|
||
|
||
|
||
# [[file:../../../projects/mud-adventure.org::*The Boat][The Boat:2]]
|
||
@dig/teleport Leaf Boat;gr01 = leaf boat;boat;embark,dock;land;disembark
|
||
# The Boat:2 ends here
|
||
|
||
|
||
|
||
# General description:
|
||
|
||
|
||
# [[file:../../../projects/mud-adventure.org::*The Boat][The Boat:3]]
|
||
@desc here = This leaf, large enough to accommodate a few people comfortably, seems to be a strange, but steady watercraft.
|
||
# The Boat:3 ends here
|
||
|
||
|
||
|
||
# Controlling the boat comes from a Script:
|
||
|
||
|
||
# [[file:../../../projects/mud-adventure.org::*The Boat][The Boat:4]]
|
||
@script here = typeclasses.sailing.Boat
|
||
# The Boat:4 ends here
|
||
|
||
|
||
|
||
# The boat has three /states/:
|
||
|
||
# - =docked= (at *Lazy Dock*)
|
||
# - =sailing= (at sea)
|
||
# - =ashore= (at some island below)
|
||
|
||
|
||
# [[file:../../../projects/mud-adventure.org::*The Boat][The Boat:5]]
|
||
@desc/docked here = This leaf, large enough to accommodate a few people comfortably, seems to be a strange, but steady watercraft. While next to the dock, you can disembark, but feel this boat could set sail at any minute.
|
||
|x[|WNote:|x Waiting on other potential passengers]|n
|
||
# The Boat:5 ends here
|
||
|
||
|
||
|
||
# And describe sailing on it.:
|
||
|
||
|
||
# [[file:../../../projects/mud-adventure.org::*The Boat][The Boat:7]]
|
||
@desc/sailing here = This leaf, large enough to accommodate a few people comfortably, seems to be a strange, but steady watercraft.
|
||
|
||
Only eddies from the subtle wake, intrude on the lavender sea's tranquility, as the giant leaf floats along an invisible current. <morning>The morning sun peaks above the colossal trees and the snow-capped mountains beyond.</morning><afternoon>The afternoon sun peaks out briefly from misty clouds.</afternoon><evening>The evening sun begins to set on a watery horizon.</evening><night>The moon peaks out from behind wispy clouds.</night>
|
||
# The Boat:7 ends here
|
||
|
||
|
||
|
||
# And the description of the boat when ashore on an island:
|
||
|
||
|
||
# [[file:../../../projects/mud-adventure.org::*The Boat][The Boat:8]]
|
||
@desc/ashore here = This leaf, large enough to accommodate a few people comfortably, seems to be a strange, but steady watercraft. Bobbing softly in the surf, the giant leaf bumps against the shore of the island, allowing you to disembark.
|
||
|x[|WNote:|x Waiting on other potential passengers]|n
|
||
# The Boat:8 ends here
|
||
|
||
|
||
|
||
# While on the boat, describe the dock:
|
||
|
||
|
||
# [[file:../../../projects/mud-adventure.org::*The Boat][The Boat:9]]
|
||
desc dock = A lazy dock with a comfortable-looking chair and a forest of colossal trees behind it on a hill.
|
||
# The Boat:9 ends here
|
||
|
||
|
||
|
||
# And describe disembarking to the Lazy Dock:
|
||
|
||
|
||
# [[file:../../../projects/mud-adventure.org::*The Boat][The Boat:10]]
|
||
@set dock/traverse_msg = "You easily disembark from the giant leaf and step onto the dock..."
|
||
# The Boat:10 ends here
|
||
|
||
|
||
|
||
# Disembark to describe the exits to the boat:
|
||
|
||
|
||
# [[file:../../../projects/mud-adventure.org::*The Boat][The Boat:11]]
|
||
@teleport/quiet Lazy Dock
|
||
# The Boat:11 ends here
|
||
|
||
|
||
|
||
# Describe the leaf boat (as an exit):
|
||
|
||
|
||
# [[file:../../../projects/mud-adventure.org::*The Boat][The Boat:12]]
|
||
@desc boat = A giant leaf, tipped on all sides, gently floats on the tranquil sea, subtly bumping against the dock. Doesn't seem to have an oar, or even a rudder, but... it appears to be a strange, but steady watercraft if one were to gather a few friends to venture to the lands beyond...
|
||
# The Boat:12 ends here
|
||
|
||
|
||
|
||
# And describe embarking:
|
||
|
||
|
||
# [[file:../../../projects/mud-adventure.org::*The Boat][The Boat:13]]
|
||
@set boat/traverse_msg = "You step into the bowed cavity of the leaf. Seems surprisingly steady...for a leaf."
|
||
# The Boat:13 ends here
|
||
|
||
|
||
|
||
# The /exit/ to and from the Dock to the *Leaf Boat* comes and goes.
|
||
|
||
# Send the “exit” to te leaf boat into the void to be picked up later:
|
||
|
||
|
||
# [[file:../../../projects/mud-adventure.org::*The Boat][The Boat:14]]
|
||
@teleport/tonone boat
|
||
# The Boat:14 ends here
|
||
|
||
# Throne Island
|
||
# The boat should land on a distant island.
|
||
|
||
# We should come up with a *theme* for the entire island, from the “statue” to the puzzles and answers.
|
||
|
||
|
||
# [[file:../../../projects/mud-adventure.org::*Throne Island][Throne Island:1]]
|
||
@dig/teleport Lonely Island;gr02:typeclasses.rooms_weather.TimeWeatherRoom
|
||
# Throne Island:1 ends here
|
||
|
||
|
||
|
||
# And describe it:
|
||
|
||
|
||
# [[file:../../../projects/mud-adventure.org::*Throne Island][Throne Island:2]]
|
||
@desc here = Vibrant green moss covers the island's gray rock. Wandering around the conifers you encounter a |Ystatue|n of an elegant woman seated on a large throne.
|
||
$state(boat, A large leaf bobs invitingly in the surf.)
|
||
# Throne Island:2 ends here
|
||
|
||
|
||
|
||
# Now jump into the boat,
|
||
|
||
|
||
# [[file:../../../projects/mud-adventure.org::*Throne Island][Throne Island:3]]
|
||
@open leaf boat;boat;embark = gr01
|
||
# Throne Island:3 ends here
|
||
|
||
|
||
|
||
# And describe the exit:
|
||
|
||
|
||
# [[file:../../../projects/mud-adventure.org::*Throne Island][Throne Island:4]]
|
||
@desc boat = A giant leaf, tipped on all sides, gently bobs in the surf of this island. Doesn't seem to have an oar, or even a rudder, but... it appears to be a strange, but steady watercraft.
|
||
# Throne Island:4 ends here
|
||
|
||
|
||
|
||
# And about getting on the boat:
|
||
|
||
|
||
# [[file:../../../projects/mud-adventure.org::*Throne Island][Throne Island:5]]
|
||
@set boat/traverse_msg = "You step into the bowed cavity of the giant leaf."
|
||
# Throne Island:5 ends here
|
||
|
||
# [[file:../../../projects/mud-adventure.org::*Throne Island][Throne Island:6]]
|
||
@teleport gr01
|
||
#
|
||
@open shore;island;disembark = gr02
|
||
# Throne Island:6 ends here
|
||
|
||
|
||
|
||
# And exiting the boat:
|
||
|
||
|
||
# [[file:../../../projects/mud-adventure.org::*Throne Island][Throne Island:7]]
|
||
@set shore/traverse_msg = "You disembark from the giant leaf to step off into the surf and onto the shore..."
|
||
# Throne Island:7 ends here
|
||
|
||
|
||
|
||
# Are they going to look before getting off?
|
||
|
||
|
||
# [[file:../../../projects/mud-adventure.org::*Throne Island][Throne Island:8]]
|
||
@desc shore = You seem to have arrived at some island covered in large conifer trees.
|
||
# Throne Island:8 ends here
|
||
|
||
|
||
|
||
# And a bit of clean up to leave the boat at the island.
|
||
|
||
|
||
# [[file:../../../projects/mud-adventure.org::*Throne Island][Throne Island:9]]
|
||
@teleport/tonone dock
|
||
# Throne Island:9 ends here
|
||
|
||
|
||
|
||
# And the boat’s “room state”:
|
||
|
||
# [[file:../../../projects/mud-adventure.org::*Throne Island][Throne Island:10]]
|
||
@roomstate shore
|
||
# Throne Island:10 ends here
|
||
|
||
# First Puzzle
|
||
# Details on the throne and the statues and maybe moss? What about sitting on the throne?
|
||
|
||
|
||
# [[file:../../../projects/mud-adventure.org::*First Puzzle][First Puzzle:1]]
|
||
@teleport gr02
|
||
#
|
||
@detail statue = A massive statue of an elegant woman atop a throne. A |Yshield|n rests against her knee as she hold an upright |Ytrident|n. In her other hand, she holds aloft an |Yorb|n. Eons of moss and mildew adds the appearance of tears streaming down her face. Only a raised eyebrow and subtle smirk hints at an earlier impression. At the base of statue is a |Yplaque|n.
|
||
# First Puzzle:1 ends here
|
||
|
||
# [[file:../../../projects/mud-adventure.org::*First Puzzle][First Puzzle:2]]
|
||
@detail trident = Held loosely with one hand. Unclear if the sculptor intended for the middle tine to be missing, or if it broke centuries ago.
|
||
# First Puzzle:2 ends here
|
||
|
||
# [[file:../../../projects/mud-adventure.org::*First Puzzle][First Puzzle:3]]
|
||
@detail orb;ball = The sphere resting on the statue's outstretched hand has an ornamental cross on top and the carved letters: |mR E G I N A|n
|
||
# First Puzzle:3 ends here
|
||
|
||
|
||
|
||
# The shield holds a poem:
|
||
|
||
|
||
# [[file:../../../projects/mud-adventure.org::*First Puzzle][First Puzzle:4]]
|
||
@detail shield = An ornate shield carved with a poem:
|
||
|
||
Upon the waves, as ship doeth glide,
|
||
Fearful whispers of the sea abide,
|
||
We cast our plea, with silver and song
|
||
To keep us safe as we sail along.
|
||
|
||
She stirs the tides with playful ease,
|
||
Her whispers ride the ocean's breeze,
|
||
Her mischief wrapped in salty foam,
|
||
A siren's call, the sea, her home.
|
||
# First Puzzle:4 ends here
|
||
|
||
|
||
|
||
# And the plaque gives the riddle.
|
||
|
||
|
||
# [[file:../../../projects/mud-adventure.org::*First Puzzle][First Puzzle:5]]
|
||
@detail plaque = Glory to the Wildmother. All should |yspeak|n her |yname|n: |mA Q U E E R T H E M E L O N|n
|
||
# First Puzzle:5 ends here
|
||
|
||
|
||
|
||
# The plaque contains a /password/ to say aloud. We need another StoryCube to listen for the pass phrase:
|
||
|
||
|
||
# [[file:../../../projects/mud-adventure.org::*First Puzzle][First Puzzle:6]]
|
||
@create/drop gr02ctl:typeclasses.puzzles.StoryCube
|
||
#
|
||
@desc gr02ctl = Opens the door when someone says Melora
|
||
#
|
||
@lock gr02ctl = view:false()
|
||
# First Puzzle:6 ends here
|
||
|
||
|
||
|
||
# The letters form a phrase to be said: =Melora the Queen= … which if said aloud, we hear:
|
||
|
||
# [[file:../../../projects/mud-adventure.org::*First Puzzle][First Puzzle:7]]
|
||
@set gr02ctl/say = {r"melora": "gm Upon uttering that phrase, sparks of octarine magic pop the illusion, revealing an open archway at the base of the giant statue. ;; tag_all hidden_archway"}
|
||
# First Puzzle:7 ends here
|
||
|
||
|
||
# @teleport arched opening = here
|
||
# And we need to get rid of it when any one leaves:
|
||
|
||
|
||
# [[file:../../../projects/mud-adventure.org::*First Puzzle][First Puzzle:8]]
|
||
@set gr02ctl/leave = "30 ;; @teleport/tonone arched opening"
|
||
# First Puzzle:8 ends here
|
||
|
||
|
||
|
||
# Which exit would need to be moved from the =None= space and a script to teleport it back after a minute.
|
||
|
||
|
||
# [[file:../../../projects/mud-adventure.org::*First Puzzle][First Puzzle:9]]
|
||
@dig Antechamber;gr03:typeclasses.rooms_dark.DarkRoom = arched opening;opening;arch
|
||
# First Puzzle:9 ends here
|
||
|
||
# [[file:../../../projects/mud-adventure.org::*First Puzzle][First Puzzle:10]]
|
||
@desc arched opening = An arch, shaped as a cresent moon, rests on two ornate pillars to frame a short opening at the base of the statue. One pillar shows carved letters: |mF I C K L E|n and the other pillar shows: |mF A I T H|n.
|
||
# First Puzzle:10 ends here
|
||
|
||
|
||
|
||
# And the description of entering:
|
||
|
||
|
||
# [[file:../../../projects/mud-adventure.org::*First Puzzle][First Puzzle:11]]
|
||
@set arched opening/traverse_msg = "You slightly stoop to enter into the darkness beyond the archway... As soon as you do, a large stone block slams down behind you, trapping you in the darkness."
|
||
# First Puzzle:11 ends here
|
||
|
||
|
||
|
||
# Let’s hide and lock this down:
|
||
|
||
|
||
# [[file:../../../projects/mud-adventure.org::*First Puzzle][First Puzzle:12]]
|
||
@set arched opening/hidden_tag = "hidden_archway"
|
||
#
|
||
@lock arched opening = view:tag(hidden_archway)
|
||
# First Puzzle:12 ends here
|
||
|
||
# Puzzle Two
|
||
# Let’s make this a dark room where one has to have two feel around for a splinter to light, or bring a torch.
|
||
|
||
|
||
# [[file:../../../projects/mud-adventure.org::*Puzzle Two][Puzzle Two:1]]
|
||
@create torch:typeclasses.lightables.LightSource
|
||
# Puzzle Two:1 ends here
|
||
|
||
|
||
|
||
# Now, we can go in:
|
||
|
||
|
||
# [[file:../../../projects/mud-adventure.org::*Puzzle Two][Puzzle Two:2]]
|
||
@teleport gr03
|
||
#
|
||
light torch
|
||
#
|
||
@desc here = A large room formed from intricately placed |Ystone blocks|n, tapered to form a |Ydome|n above you. In the center you see a large |Yobelisk|n with an empty |Ycavity|n halfway up.|/
|
||
A overly ornate |Ydoor|n with letters in rows and columns in a grid matrix indicates the exit. Placed above the door, a bronze |Yplaque|n, shows its age with a coat of patina.
|
||
# Puzzle Two:2 ends here
|
||
|
||
|
||
|
||
# And some details:
|
||
|
||
|
||
# [[file:../../../projects/mud-adventure.org::*Puzzle Two][Puzzle Two:3]]
|
||
@detail cavity = While empty, this opening, about a foot or so deep, looks like it may have held something in the past.
|
||
# Puzzle Two:3 ends here
|
||
|
||
|
||
|
||
# Don’t know if the blocks are interesting:
|
||
|
||
|
||
# [[file:../../../projects/mud-adventure.org::*Puzzle Two][Puzzle Two:4]]
|
||
@detail stone blocks = While the stones are tightly placed, a curious blue fungus grows where moisture seeps between the seams.
|
||
# Puzzle Two:4 ends here
|
||
|
||
|
||
|
||
# Dome?
|
||
|
||
|
||
# [[file:../../../projects/mud-adventure.org::*Puzzle Two][Puzzle Two:5]]
|
||
@detail dome = Perhaps 30 feet high, but as shadows from the flame dance above you, you find it difficult to tell.
|
||
# Puzzle Two:5 ends here
|
||
|
||
# Puzzle Three
|
||
# Each time this is “seen”, the response is different, so we use a [[file:~/src/moss-n-puddles/typeclasses/puzzles.py::class Changling(Object):][Changling]]:
|
||
|
||
|
||
# [[file:../../../projects/mud-adventure.org::*Puzzle Three][Puzzle Three:1]]
|
||
@create/drop granite obelisk: typeclasses.puzzles.Changling
|
||
# Puzzle Three:1 ends here
|
||
|
||
|
||
|
||
# The default description will be replaced:
|
||
|
||
|
||
# [[file:../../../projects/mud-adventure.org::*Puzzle Three][Puzzle Three:2]]
|
||
@desc obelisk = A granite obelisk grazes the top of the dome. Each of its four sides show a different image.
|
||
# Puzzle Three:2 ends here
|
||
|
||
|
||
|
||
# We build a /changling’s/ description from a =_prefix=, a random =descs=, and a =_postfix=:
|
||
|
||
|
||
# [[file:../../../projects/mud-adventure.org::*Puzzle Three][Puzzle Three:3]]
|
||
@set obelisk/desc_prefix = "A << granite ^ large ^ stone >> obelisk grazes the top of the dome. The surface of the obelisk seem to waver, shift and writhe under your gaze."
|
||
#
|
||
@set obelisk/desc_postfix = " And << quickly ^ soon ^ swiftly >>, the << image ^ visage ^ vision ^ carving >> << is gone ^ fades ^ disappears ^ vanishes >>."
|
||
# Puzzle Three:3 ends here
|
||
|
||
|
||
|
||
# And a list of differences that gives a hint to the password:
|
||
|
||
|
||
# [[file:../../../projects/mud-adventure.org::*Puzzle Three][Puzzle Three:4]]
|
||
@set obelisk/descs = (
|
||
"You can briefly make out the image of ocean waves.",
|
||
"For the briefest moment you make out an icy engravings of crystals.",
|
||
"You think you can see the outline of grass covered in dew drops.",
|
||
"The surface for a moment seems to portray clouds passing by.",
|
||
"Trees bordering a flowing river show up on the surface.",
|
||
)
|
||
# Puzzle Three:4 ends here
|
||
|
||
|
||
|
||
# If they say the /magic word/, they get the maguffin.
|
||
|
||
|
||
# [[file:../../../projects/mud-adventure.org::*Puzzle Three][Puzzle Three:5]]
|
||
@set obelisk/say = { r"^[Ww]ater[^A-z]*$": "gm Upon uttering that phrase, sparks of octarine magic and mist appear on the opening on the obelisk. ;; gm A conch materializes in the opening. ;; teleport conch = Antechamber", r"^tidal surge.*": "gm You hear an audible click from the ornate door! ;; tag_all open_ornate_door" }
|
||
# Puzzle Three:5 ends here
|
||
|
||
|
||
|
||
# Of course, we need a conch for this magic:
|
||
|
||
|
||
# [[file:../../../projects/mud-adventure.org::*Puzzle Three][Puzzle Three:6]]
|
||
@create conch:typeclasses.sailing.CallingHorn
|
||
# Puzzle Three:6 ends here
|
||
|
||
# [[file:../../../projects/mud-adventure.org::*Puzzle Three][Puzzle Three:7]]
|
||
@desc conch = A shimmering, otherworldly shell.
|
||
# Puzzle Three:7 ends here
|
||
|
||
|
||
|
||
# This conch _belongs_ in the obelisk:
|
||
|
||
|
||
# [[file:../../../projects/mud-adventure.org::*Puzzle Three][Puzzle Three:8]]
|
||
@set obelisk/objects_here = "conch"
|
||
# Puzzle Three:8 ends here
|
||
|
||
|
||
|
||
# And put it away:
|
||
|
||
|
||
# [[file:../../../projects/mud-adventure.org::*Puzzle Three][Puzzle Three:9]]
|
||
py me.search('obelisk').cleanup()
|
||
# Puzzle Three:9 ends here
|
||
|
||
# Puzzle Four
|
||
# We need another door in order to escape.
|
||
|
||
|
||
# [[file:../../../projects/mud-adventure.org::*Puzzle Four][Puzzle Four:1]]
|
||
@detail plaque = Through the green patina, you can barely make out the text:
|
||
A spoken word unseals me.
|
||
It starts with a T.
|
||
Halfway between twins.
|
||
The next character lies.
|
||
# Puzzle Four:1 ends here
|
||
|
||
|
||
|
||
# The door leads back out.
|
||
|
||
|
||
# [[file:../../../projects/mud-adventure.org::*Puzzle Four][Puzzle Four:2]]
|
||
@open ornate door;door = Lonely Island
|
||
# Puzzle Four:2 ends here
|
||
|
||
|
||
|
||
# The dock is locked:
|
||
|
||
|
||
# [[file:../../../projects/mud-adventure.org::*Puzzle Four][Puzzle Four:3]]
|
||
@lock ornate door = traverse:tag(open_ornate_door)
|
||
# Puzzle Four:3 ends here
|
||
|
||
# [[file:../../../projects/mud-adventure.org::*Puzzle Four][Puzzle Four:4]]
|
||
@set ornate door/err_traverse = "The door is locked."
|
||
# Puzzle Four:4 ends here
|
||
|
||
|
||
|
||
# Look at the grid to find the two T’s:
|
||
|
||
|
||
# [[file:../../../projects/mud-adventure.org::*Puzzle Four][Puzzle Four:5]]
|
||
@desc ornate door = The grid of letters look like:
|
||
|
||
| Y | B | Q | X | D | Q |
|
||
| Y | A | K | D | X | B |
|
||
| D | E | L | G | W | X |
|
||
| T | S | - | A | X | V |
|
||
| L | J | H | E | P | V |
|
||
| F | U | I | D | I | P |
|
||
| H | X | R | G | R | X |
|
||
| K | S | M | U | T | N |
|
||
| W | X | M | W | Z | Z |
|
||
# Puzzle Four:5 ends here
|
||
|
||
|
||
|
||
# If they say, /Tidal Surge/, the *Locker* unlocks the door, and they can go through.
|
||
|
||
|
||
# [[file:../../../projects/mud-adventure.org::*Puzzle Four][Puzzle Four:6]]
|
||
@set ornate door/traverse_msg = "You open the door, and see that the door exits next to the statue..."
|
||
# Puzzle Four:6 ends here
|