Initial commit

This commit is contained in:
2025-08-28 04:57:24 +00:00
commit a5a7d92249
14 changed files with 314 additions and 0 deletions

View File

@@ -0,0 +1,39 @@
# chest.py
# --------
# By MWC Contributors
#
# This is a Python program. You should run it by typing `python chest.py`.
import os
from pathlib import Path
import sys
sys.path.append('../../..')
from fancy_printing import print_fancy
SECRET = "318"
APPROACH_CHEST = [
"You approach the chest and see that the lock is surprisingly free of rust. In fact, the code dials turn smoothly. Try entering a code."
]
CHEST_OPENS = [
"The chest snaps open, releasing several huge air bubbles. You look into the chest and see something shining brightly from within, so bright you can't quite make out what it is."
]
INSTRUCTIONS = [
"You grab the treasure from the chest...it's so shiny! Make a bag and store your treasure inside, using the following commands:",
"mkdir bag",
"mv treasure.jpg bag",
"Then get back to the surface. Don't forget to take your treasure bag with you. Remember, `..` means 'the parent directory,' so these commands will move the bag to the parent directory and then move yourself:",
"mv bag ../bag",
"cd .."
]
WRONG_CODE = [
"nothing happens. Maybe next time."
]
print_fancy(APPROACH_CHEST)
guess = input(" > ")
if guess.strip() == SECRET:
print_fancy(CHEST_OPENS)
print_fancy(INSTRUCTIONS)
os.system('cp ./../../../.assets/fork.jpg treasure.jpg')
else:
print_fancy(WRONG_CODE)

View File

@@ -0,0 +1,23 @@
You are standing at the edge of a beautiful coral reef. Schools of fish are
swirling around you in every direction. In front of you is a deep chasm
where you see larger fish sliding through the shadows. There is a chest
half-buried in the seafloor.
____...------------...____
_.-"` /o/__ ____ __ __ __ \o\_`"-._
.' / / \ \ '.
|=====/o/======================\o\=====|
|____/_/________..____..________\_\____|
/ _/ \_ <_o#\__/#o_> _/ \_ \
\________________\####/________________/
|===\!/========================\!/===|
| |=| .---. |=| |
|===|o|=========/ \========|o|===|
| | | \() ()/ | | |
|===|o|======{'-.) A (.-'}=====|o|===|
| __/ \__ '-.\uuu/.-' __/ \__ |
|============= .'.'^'.'.=============|
| _\o/ __ {.' __ '.} _ _\o/ _|

View File

@@ -0,0 +1,7 @@
After several moments of peaceful floating, you make a gentle landing on
the seafloor, several hundered meters away from the sunken ship. You appear
to be at the edge of a plateau whose edges are encrusted with beautiful
corals.
Both sunken_ship and coral_reef are directories, so use the `cd` command
to go into whichever one you want.

View File

@@ -0,0 +1,25 @@
# ghost.py
# --------
# By MWC Contributors
#
# This is a Python program. You can run it by typing `python ghost.py`
import sys
from pathlib import Path
sys.path.append('../../../..')
from fancy_printing import print_fancy
GHOST_GIVES_KEY = [
"You enter the cramped galley and notice a sad, lonely ghost wandering around. You always wondered if you would be afraid of ghosts, but somehow this feels completely normal. The ghost begins to speak.",
"'It has been a long while since I have seen anybody down here,' she says. 'I would like to give you a gift. Here's a key.'"
]
GHOST_IS_BORED = [
"The ghost glances over at you. 'I hope you find some use for that key.'"
]
KEY = " Even in the faint light of your lamp, the key has a golden gleam.\n\n"
if Path("key.txt").exists():
print_fancy(GHOST_IS_BORED)
else:
print_fancy(GHOST_GIVES_KEY)
Path("key.txt").write_text(KEY)

View File

@@ -0,0 +1,6 @@
The sunken ship is lying on the seafloor at a slight angle. From the remains
of its masts and rigging, you can tell it's from the age before ships were made
of steel and powered by engines. You climb up in the deck, and see a large hole
allowing access to the inner chambers. You flick on your suit's light and
go inside.

View File

@@ -0,0 +1,26 @@
# desk.py
# --------
# By MWC Contributors
#
# This is a Python program. You can run it by typing `python desk.py`
import sys
from pathlib import Path
sys.path.append('../../../..')
from fancy_printing import print_fancy
DESCRIPTION = [
"The stateroom contains the ruins of an elegant office. Scraps of wallpaper are peeling from the wall; there is an eel living in the chandelier. There is a huge desk at the center of the room."
]
OPEN_DESK = [
"You try your key in the desk drawer, and it clicks open. There are many decaying pieces of paper. One has the numbers 318 written in a fine script."
]
DESK_LOCKED = [
"You try to open the desk's drawer, but it is firmly locked."
]
print_fancy(DESCRIPTION)
if Path("../galley/key.txt").exists():
print_fancy(OPEN_DESK)
else:
print_fancy(DESK_LOCKED)

9
adventure/sinking.txt Normal file
View File

@@ -0,0 +1,9 @@
As you are lowered off the edge of the research boat, you wave goodbye to
your friends. The diving suit is tight and stiff, and your vision is limited
to the round window in front of you. Your head goes below water, and the
sharp details of the boat are replaced by a wash of blues and greens. Below
you is an endless expanse of water. You can just barely see the sunken ship
on the seafloor. You relax, allowing your body to gently float down...
To continue, you need to go into the seafloor directory by typing
"cd seafloor". Once you're there, type `ls` to see what's inside.