HELP | * | 1 | Type commands to explore the environment. Use 'LOOK' to examine the room you're in, or 'LOOK <item>' to examine an item closely. 'N', 'S', 'E', and 'W' will move you in the four cardinal directions, and 'I' will let you check your inventory. The parser is not very advanced, so do your best. Nothing more than a one- or two- word phrase is required. 'Q', 'QUIT', or 'EXIT' will let you quit. If you REALLY need help, type 'WALKTHROUGH'. |
BREAK | * | 1 | That doesn't seem like a good idea |
LOOK ROBOTS | * | 2 | There aren't any robots to look at here. |
WALKTHROUGH | * | 1 | Yeah, fair enough. I'm not great at designing adventure games. If you're really sure you want a walkthrough, ask one more time. | ENABLE(ASKED_FOR_WALKTHROUGH)
WALKTHROUGH | ENABLED(ASK_FOR_WALKTHROUGH) | 2 | OPEN LOCKER, TAKE HAMMER, WEST, TAKE BARREL, EAST, EAST, POUR BARREL, NORTH, WEST, WEST, SOUTH, ATTACK ROBOT, LOOK SHELF, TAKE GLOVES, EAST, NORTH, EAST, NORTH, UP, TAKE REBAR, DOWN, SOUTH, WEST, SOUTH, WEST, USE ANVIL, EAST, NORTH, EAST, EAST, NORTH, USE PRYBAR, NORTH, <the part where you're in the dam>
### HUT ###
EAST | IN(HUT) | 2 | You walk into your east yard. | GOTO(EAST_YARD)
WEST | IN(HUT) | 2 | You walk into your west yard. | GOTO(WEST_YARD)
LOOK BED | IN(HUT) | 10 | There's not a lot of room to sleep, but you've gathered enough blankets such that it's pretty comfortable at night. |
SLEEP | IN(HUT) | 10 | The bed's comfortable, but you're not especially tired |
LOOK FOOTLOCKER | IN(HUT) | 10 | The footlocker is made of cheap plastic. It's closed but not locked. |
OPEN FOOTLOCKER | IN(HUT) | 10 | You swing the footlocker open. Inside it is a well-worn claw hammer | ENABLE(FOOTLOCKER_OPEN)
OPEN FOOTLOCKER | IN(HUT) & ENABLED(TAKEN_HAMMER) | 50 | You swing the footlocker open. It's empty. | ENABLE(FOOTLOCKER_OPEN)
OPEN FOOTLOCKER | IN(HUT) & ENABLED(FOOTLOCKER_OPEN) | 100 | The footlocker is already open. |
LOOK FOOTLOCKER | IN(HUT) & ENABLED(FOOTLOCKER_OPEN) | 100 | The footlocker is made of cheap plastic. It's open, and there's a hammer inside. |
LOOK FOOTLOCKER | IN(HUT) & ENABLED(FOOTLOCKER_OPEN) & ENABLED(TAKEN_HAMMER) | 1000 | The footlocker is made of cheap plastic. It's open, but empty. |
CLOSE FOOTLOCKER | IN(HUT) & ENABLED(FOOTLOCKER_OPEN) | 100 | You close the footlocker. | DISABLE(FOOTLOCKER_OPEN)
TAKE HAMMER | IN(HUT) & ENABLED(FOOTLOCKER_OPEN) | 100 | You pick up the hammer. | TAKE_ITEM(HAMMER) & ENABLE(TAKEN_HAMMER)
TAKE HAMMER | IN(HUT) & ENABLED(FOOTLOCKER_OPEN) & ENABLED(TAKEN_HAMMER) | 1000 | You've already taken it. |
TAKE HAMMER | ITEM_HERE(HAMMER) | 100 | You pick up the hammer. | TAKE_ITEM(HAMMER)
DROP HAMMER | HAS_ITEM(HAMMER) | 100 | You drop the hammer. | DROP_ITEM(HAMMER)
### East Yard ###
WEST | IN(EAST_YARD) | 2 | You enter your hut. | GOTO(HUT)
NORTH | IN(EAST_YARD) | 2 | Your plants are not looking too healthy. You should see if you can do something to help them out before leaving. |
NORTH | IN(EAST_YARD) & ENABLED(PLANTS_SAVED) | 5 | You open the north gate and head through it. | GOTO(SE_RESERVOIR)
SOUTH | IN(EAST_YARD) | 2 | Your plants are not looking too healthy. You should see if you can do something to help them out before leaving. |
SOUTH | IN(EAST_YARD) & ENABLED(PLANTS_SAVED) | 5 | You open the south gate and head through it. | GOTO(CLIFF)
LOOK PLANTER | IN(EAST_YARD) | 10 | The planter is pretty wide, and has <HELP I AM NOT GOOD WITH PLANTS>. They're looking pretty brown and scraggly. Positioned next to the planter is a water tank, hooked to an irrigation system. |
LOOK TANK | IN(EAST_YARD) | 10 | This tank supplies the water to your plants. It's completely empty. |
LOOK TANK | IN(EAST_YARD) & ENABLED(PLANTS_SAVED) | 100 | This tank supplies the water to your plants. It's got enough water for a few months in it. |
TAKE TANK | IN(EAST_YARD) | 10 | The tank is attached to the irrigation system; taking it would damage all of the little pipes. |
TAKE PLANTER | IN(EAST_YARD) | 10 | The planter is enormous, you couldn't move it even if you wanted to. |
USE BARREL | IN(EAST_YARD) | 10 | What barrel? |
USE BARREL | IN(EAST_YARD) & HAS_ITEM(FULL_BARREL) | 1000 | You pour the contents of the barrel into the tank. The plants should be nice and healthy now! | ENABLE(PLANTS_SAVED) & DESTROY(FULL_BARREL) & TAKE(EMPTY_BARREL)
POUR BARREL | IN(EAST_YARD) & HAS_ITEM(FULL_BARREL) | 1000 | You pour the contents of the barrel into the tank. The plants should be nice and healthy now! | ENABLE(PLANTS_SAVED) & DESTROY(FULL_BARREL) & TAKE(EMPTY_BARREL)
### West Yard ###
EAST | IN(WEST_YARD) | 2 | You enter your hut. | GOTO(HUT)
LOOK BARRELS | IN(WEST_YARD) | 10 | The barrels are positioned to collect rainwater from the roof. Most are empty, but one of them is full of water. |
LOOK BARREL | IN(WEST_YARD) | 10 | The barrels are positioned to collect rainwater from the roof. Most are empty, but one of them is full of water. |
TAKE BARREL | IN(WEST_YARD) | 10 | There's no reason to take the empty barrels |
TAKE BARREL | IN(WEST_YARD) & ITEM_HERE(FULL_BARREL) | 100 | The full barrel is heavy, but you take it with you. | TAKE(FULL_BARREL)
### SE Reservoir ###
SOUTH | IN(SE_RESERVOIR) | 2 | You open the gate and reenter your yard. | GOTO(EAST_YARD)
NORTH | IN(SE_RESERVOIR) | 2 | You head up the path towards the dam. | GOTO(NE_RESERVOIR)
WEST | IN(SE_RESERVOIR) | 2 | You head down the path and around the reservoir. | GOTO(SW_RESERVOIR)
LOOK RESERVOIR | IN(SE_RESERVOIR) | 5 | It's an enormous pit with steep, dusty sides. At the bottom there's a lot of mud, but no real water to speak of. |
LOOK DAM | IN(SE_RESERVOIR) | 5 | The dam is enormous and made of concrete. High up, it has two huge metal floodgates, but they're closed. At ground lever, there seems to be a door in the side of the wall. |
LOOK ROBOTS | IN(SE_RESERVOIR) | 5 | It's hard to make out any details, but you'd recognize these robots anywhere. Their lasers are a painful deterrant from those who get to close to the places they guard. |
### NE Reservoir ###
NORTH | IN(NE_RESERVOIR) | 2 | A sturdy metal door blocks your path. |
NORTH | IN(NE_RESERVOIR) & ENABLED(OPENED_DOOR) | 5 | You make your way inside the dam. | GOTO(DAM_INSIDE)
WEST | IN(NE_RESERVOIR) | 2 | The reservoir is that way. No real reason to go in there, and there'd be no way to get back out. |
SOUTH | IN(NE_RESERVOIR) | 2 | You head back down the path. | GOTO(SE_RESERVOIR)
LOOK RESERVOIR | IN(NE_RESERVOIR) | 5 | It's an enormous pit with steep, dusty sides. At the bottom there's a lot of mud, but no real water to speak of. |
LOOK DAM | IN(NE_RESERVOIR) | 5 | The dam towers over you. It's made of concrete, now somewhat pitted and cracked from hundreds of years of exposure to the elements. |
LOOK ROBOTS | IN(NE_RESERVOIR) | 5 | The robots are above the dam, and from this angle you can't see them. |
LOOK DOOR | IN(NE_RESERVOIR) | 5 | The door is very sturdy and made of metal. It's stuck in place, but has very clearly been pried open at some point; the edge is bent in places. |
LOOK DOOR | IN(NE_RESERVOIR) & ENABLED(OPENED_DOOR) | 10 | The door is very sturdy and made of metal, but it's open now. |
OPEN DOOR | IN(NE_RESERVOIR) | 10 | You get a good grip on the door and yank as hard as you can, but it doesn't budge. The sharp edge of the door hurts your fingers. |
OPEN DOOR | IN(NE_RESERVOIR) & HAS_ITEM(GLOVES) | 50 | You get a good grip on the door and yank as hard as you can, but it doesn't budge. The edge of the door is sharp, but the gloves protect your fingers. You pull a couple more times, but the door refuses to budge. |
OPEN DOOR | IN(NE_RESERVOIR) & HAS_ITEM(PRYBAR) | 100 | You wedge the bar against the bottom of the door, and give it a shove. With an earsplitting creak, the door slides open several inches, enough that you can wriggle your way through the opening. | ENABLE(OPENED_DOOR)
OPEN DOOR | IN(NE_RESERVOIR) & ENABLED(OPENED_DOOR) | 1000 | The door is already open. |
PULL DOOR | IN(NE_RESERVOIR) | 10 | You get a good grip on the door and yank as hard as you can, but it doesn't budge. The sharp edge of the door hurts your fingers. |
PULL DOOR | IN(NE_RESERVOIR) & HAS_ITEM(GLOVES) | 50 | You get a good grip on the door and yank as hard as you can, but it doesn't budge. The edge of the door is sharp, but the gloves protect your fingers. You pull a couple more times, but the door refuses to budge. |
PULL DOOR | IN(NE_RESERVOIR) & ENABLED(OPENED_DOOR) | 1000 | The door is already open. |
PUSH DOOR | IN(NE_RESERVOIR) | 10 | Good thought, but no, the door does not open inwards. |
### SW Reservoir ###
NORTH | IN(SW_RESERVOIR) | 2 | You head up the path towards the dam. | GOTO(NW_RESERVOIR)
WEST | IN(SW_RESERVOIR) | 2 | You walk on the train into the woods. | GOTO(TRAIL)
EAST | IN(SW_RESERVOIR) | 2 | You head down the path and around the reservoir. | GOTO(SE_RESERVOIR)
LOOK RESERVOIR | IN(SW_RESERVOIR) | 5 | It's an enormous pit with steep, dusty sides. At the bottom there's a lot of mud, but no real water to speak of. |
LOOK DAM | IN(SW_RESERVOIR) | 5 | The dam is enormous and made of concrete. High up, it has two huge metal floodgates, but they're closed. At ground lever, there seems to be a door in the side of the wall. |
LOOK ROBOTS | IN(SW_RESERVOIR) | 5 | It's hard to make out any details, but you'd recognize these robots anywhere. Their lasers are a painful deterrant from those who get to close to the places they guard. |
### NW Reservoir ###
UP | IN(NW_RESERVOIR) | 2 | You try to climb the rungs of the ladder, but they're very slippery from exposure to the elements. If you can find a way to grip onto things, you should be able to make your way up. |
UP | IN(NW_RESERVOIR) & HAS_ITEM(GLOVES) | 50 | Cautiously, you use the rungs to climb to the top of the dam. | GOTO(DAM)
UP | IN(NW_RESERVOIR) & HAS_ITEM(FULL_BARREL) | 50 | You can't make the climb while carrying a barrel around. |
UP | IN(NW_RESERVOIR) & HAS_ITEM(EMPTY_BARREL) | 50 | You can't make the climb while carrying a barrel around. |
EAST | IN(NW_RESERVOIR) | 2 | The reservoir is that way. No real reason to go in there, and there'd be no way to get back out. |
SOUTH | IN(NW_RESERVOIR) | 2 | You head back down the path. | GOTO(SW_RESERVOIR)
LOOK RESERVOIR | IN(NW_RESERVOIR) | 5 | It's an enormous pit with steep, dusty sides. At the bottom there's a lot of mud, but no real water to speak of. |
LOOK DAM | IN(NW_RESERVOIR) | 5 | The dam towers over you. It's made of concrete, now somewhat pitted and cracked from hundreds of years of exposure to the elements. |
LOOK ROBOTS | IN(NW_RESERVOIR) | 5 | The robots are above the dam, and from this angle you can't see them. |
LOOK LADDER | IN(NW_RESERVOIR) | 2 | The rungs appear to be made of concrete. They're staying together despite centuries of exposure, but they're completely smooth at this point.
### Dam ###
DOWN | IN(DAM) | 2 | Fearful of softlocking, you decide it's better to put your gloves on before climbing down. |
DOWN | IN(DAM) & HAS_ITEM(GLOVES) | 10 | You carefully navigate the ladder an climb down to the ground. | GOTO(NW_RESERVOIR)
NORTH | IN(DAM) | 2 | The water's that way, but any one of these robots would zap you if you got too close. |
SOUTH | IN(DAM) | 2 | There's nothing but open air to the south. Instead, you could try going DOWN the ladder. |
TAKE REBAR | ITEM_HERE(REBAR) | 100 | You pick up the rebar. | TAKE_ITEM(REBAR)
DROP REBAR | HAS_ITEM(REBAR) | 100 | You drop the rebar. | DROP_ITEM(REBAR)
### Trail ###
EAST | IN(TRAIL) | 2 | You emerge from the woods at the southwest corner of the reservoir. | GOTO(SW_RESERVOIR)
SOUTH | IN(TRAIL) | 2 | You head down the trail, further into the woods | GOTO(OUT_CABIN)
LOOK TREES | IN(TRAIL) | 2 | The trees are definitely alive, but the woods are not an especially vibrant place: there are very few leaves, and the air has a stillness to it. Maybe the trees are hibernating? |
### Out Cabin ###
NORTH | IN(OUT_CABIN) | 2 | You head up the trail, into the woods. | GOTO(TRAIL)
EAST | IN(OUT_CABIN) | 2 | You head down the trail, emerging from the woods onto a clifftop. | GOTO(CLIFF) & ENABLE(FOUND_CLIFF)
WEST | IN(OUT_CABIN) | 2 | You can't approach the cabin, a security robot is guarding it. |
WEST | IN(OUT_CABIN) & ENABLED(CABIN_ROBOT_DESTROYED) | 10 | You cautiously enter the cabin | GOTO(IN_CABIN)
ATTACK ROBOT | IN(OUT_CABIN) | 10 | With what, your bare hands? The robot's made of metal. |
ATTACK ROBOT | IN(OUT_CABIN) & HAS_ITEM(GLOVES) | 11 | With what, your gloved hands? The robot's made of metal. |
ATTACK ROBOT | IN(OUT_CABIN) & HAS_ITEM(HAMMER) | 20 | You grit your teeth, leap towards the robot, and bop it with your hammer. It zaps you with a laser, which knocks you back, but you've damaged its hovering capabilities, and it falls to the ground. After you catch your breath, you walk over and finish it off. | ENABLE(CABIN_ROBOT_DESTROYED)
ATTACK ROBOT | IN(OUT_CABIN) & ENABLED(CABIN_ROBOT_DESTROYED) | 50 | The robot is already destroyed |
LOOK ROBOT | IN(OUT_CABIN) | 10 | It's a smooth metal ball, punctuated by many sharp, angular antennae sticking off in all directions, and three bright red eyes, or things that look like eyes. It's mean-looking, but pretty small, and you might be able to destroy it with a weapon of some kind. |
LOOK ROBOT | IN(OUT_CABIN) & ENABLED(CABIN_ROBOT_DESTROYED) | 50 | The metal shell doesn't seem to have been that thick, and it's dented and even punctured in places. It's not moving, glowing, or making any noise at all any more. |
LOOK CABIN | IN(OUT_CABIN) | 2 | Parts of the roof are definitely missing, but you've slept in worse lodgings before. |