Everything but the last couple of rooms
This commit is contained in:
parent
17f023e460
commit
6c4b081f9e
@ -35,9 +35,11 @@ To the north lies a gigantic, basically-empty reservoir. One side of the reservo
|
||||
is a dam, holding back enough water for the entire valley. But the dam's floodgates
|
||||
are closed, and the water is beyond a steep hill and a swarm of security robots.
|
||||
If you could somehow open the floodgates, though...
|
||||
|
||||
North again takes you to a human-sized door built into the side of the dam. The
|
||||
door is sturdy, and made of metal, but it's been forced open before, and with
|
||||
a prybar, you could force your way in for sure. Pushing and pulling have no effect.
|
||||
|
||||
South then West lets you go around the reservoir. North again gets you to the wall
|
||||
of the dam, into which is carved a huge ladder. Grippy gloves would let you climb
|
||||
it, but it's too slippery without them. You can't climb the ladder while carrying
|
||||
|
@ -12,7 +12,7 @@ SLEEP | * | 1 | You're not especially tired |
|
||||
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>
|
||||
WALKTHROUGH | ENABLED(ASKED_FOR_WALKTHROUGH) | 2 | OPEN LOCKER, TAKE HAMMER, WEST, TAKE BARREL, EAST, EAST, POUR BARREL, DROP BARREL, NORTH, WEST, WEST, SOUTH, ATTACK ROBOT, WEST, 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)
|
||||
@ -27,10 +27,10 @@ LOOK FOOTLOCKER | IN(HUT) & ENABLED(FOOTLOCKER_OPEN) | 100 | The footlocker is m
|
||||
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)
|
||||
CLOSE FOOTLOCKER | IN(HUT) | 10 | It's already closed. |
|
||||
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) | 100 | You pick up the hammer. | TAKE(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)
|
||||
TAKE HAMMER | ITEM_HERE(HAMMER) | 100 | You pick up the hammer. | TAKE(HAMMER)
|
||||
DROP HAMMER | HAS_ITEM(HAMMER) | 100 | You drop the hammer. | DROP(HAMMER)
|
||||
|
||||
### East Yard ###
|
||||
WEST | IN(EAST_YARD) | 2 | You enter your hut. | GOTO(HUT)
|
||||
@ -53,6 +53,8 @@ LOOK BARRELS | IN(WEST_YARD) | 10 | The barrels are positioned to collect rainwa
|
||||
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)
|
||||
DROP BARREL | HAS_ITEM(FULL_BARREL) | 100 | You drop the barrel. | DROP(FULL_BARREL)
|
||||
DROP BARREL | HAS_ITEM(EMPTY_BARREL) | 100 | You drop the barrel. | DROP(EMPTY_BARREL)
|
||||
|
||||
### SE Reservoir ###
|
||||
SOUTH | IN(SE_RESERVOIR) | 2 | You open the gate and reenter your yard. | GOTO(EAST_YARD)
|
||||
@ -74,12 +76,16 @@ LOOK DOOR | IN(NE_RESERVOIR) | 5 | The door is very sturdy and made of metal. It
|
||||
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) & HAS_ITEM(REBAR) | 75 | You try to wedge the rebar into the doorframe, but it isn't the right shape to give you any leverage. If you had a way to reshape it, you might have better luck. |
|
||||
OPEN DOOR | IN(NE_RESERVOIR) & HAS_ITEM(PRYBAR) | 100 | You wedge the prybar 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. |
|
||||
USE PRYBAR | IN(NE_RESERVOIR) | 10 | You don't have anything you can use as a prybar. |
|
||||
USE PRYBAR | IN(NE_RESERVOIR) & HAS_ITEM(REBAR) | 50 | You try to wedge the rebar into the doorframe, but it isn't the right shape to give you any leverage. If you had a way to reshape it, you might have better luck. |
|
||||
USE PRYBAR | IN(NE_RESERVOIR) & HAS_ITEM(PRYBAR) | 100 | You wedge the prybar 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)
|
||||
|
||||
### SW Reservoir ###
|
||||
NORTH | IN(SW_RESERVOIR) | 2 | You head up the path towards the dam. | GOTO(NW_RESERVOIR)
|
||||
@ -106,8 +112,12 @@ DOWN | IN(DAM) | 2 | Fearful of softlocking, you decide it's better to put your
|
||||
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)
|
||||
LOOK WATER | IN(DAM) | 2 | The water is blue and beautiful. It doesn't 'belong to you', though, and the robots are here to enforce that. |
|
||||
DRINK WATER | IN(DAM) | 2 | You'd love to do that, but you'd never be able to get close enough. Not even if you had a bendy straw. |
|
||||
TAKE WATER | IN(DAM) | 2 | You don't have any way to get to the water, and you have no way to carry water. |
|
||||
LOOK ROBOTS | IN(DAM) | 5 | You'd recognize these robots anywhere. They come in a motley variety of designs, but they all have jagged, spiky antennae sticking out in all directions, and they all have one or more glowing red eyes. They're all relatively round, but all different sizes. Their lasers are a painful deterrant from those who get to close to the places they guard. |
|
||||
TAKE REBAR | ITEM_HERE(REBAR) | 100 | You pick up the rebar. | TAKE(REBAR)
|
||||
DROP REBAR | HAS_ITEM(REBAR) | 100 | You drop the rebar. | DROP(REBAR)
|
||||
|
||||
### Trail ###
|
||||
EAST | IN(TRAIL) | 2 | You emerge from the woods at the southwest corner of the reservoir. | GOTO(SW_RESERVOIR)
|
||||
@ -128,8 +138,29 @@ LOOK ROBOT | IN(OUT_CABIN) & ENABLED(CABIN_ROBOT_DESTROYED) | 50 | The metal she
|
||||
LOOK CABIN | IN(OUT_CABIN) | 2 | Parts of the roof are definitely missing, but you've slept in worse lodgings before. |
|
||||
|
||||
### In Cabin ###
|
||||
EAST | IN(IN_CABIN) | 2 | You step out the door and back onto the trail. | GOTO(OUT_CABIN)
|
||||
LOOK ANVIL | IN(IN_CABIN) | 2 | This anvil has been used a lot, it's all full of dents. |
|
||||
LOOK SHELVES | IN(IN_CABIN) | 2 | The shelves are full of dusty and broken junk. The only useful things here are a pair of grippy-looking gloves. | ENABLE(SEARCHED_SHELVES) & DROP(GLOVES)
|
||||
LOOK SHELVES | IN(IN_CABIN) & ENABLED(SEARCHED_SHELVES) | 5 | The shelves are full of dusty and broken junk. |
|
||||
USE ANVIL | * | 2 | You don't have anything to use on the anvil. |
|
||||
USE ANVIL | HAS_ITEM(HAMMER) | 5 | You've got a hammer and an anvil, but nothing to shape. |
|
||||
USE ANVIL | HAS_ITEM(REBAR) | 5 | You could reshape the rebar on the anvil, if only you had a hammer. |
|
||||
USE ANVIL | HAS_ITEM(HAMMER) & HAS_ITEM(REBAR) | 50 | Without a heat source, you're unable to make any fine adjustments, but you use your hammer to bend the rebar into a very crude prybar. | DESTROY(REBAR) & TAKE(PRYBAR)
|
||||
USE ANVIL | HAS_ITEM(PRYBAR) | 100 | You have already created the prybar. |
|
||||
TAKE ANVIL | * | 2 | It's enormous and made of iron, there's no way to pick it up. |
|
||||
TAKE GLOVES | ITEM_HERE(GLOVES) | 100 | You pick up the gloves and put them on. | TAKE(GLOVES)
|
||||
DROP GLOVES | HAS_ITEM(GLOVES) | 100 | You remove and drop the gloves. | DROP(GLOVES)
|
||||
|
||||
### Cliff ###
|
||||
EAST | IN(CLIFF) | 2 | There are thick woods in that direction. You don't see any way to go in without getting lost. |
|
||||
EAST | IN(CLIFF) & ENABLED(FOUND_CLIFF) | 20 | You reenter the woods, heading towards the cabin. | GOTO(OUT_CABIN)
|
||||
NORTH | IN(CLIFF) | 2 | You open the gate and head back into your yard. | GOTO(EAST_YARD)
|
||||
SOUTH | IN(CLIFF) | 2 | There's no real way to climb safely down the cliff. |
|
||||
LOOK CLIFF | IN(CLIFF) | 2 | The chalky white cliff slopes away steeply. Below, an enormous valley stretches out, full of sparse grass and sickly trees. |
|
||||
|
||||
### Dam Inside ###
|
||||
SOUTH | IN(DAM_INSIDE) | 2 | You push your way through the broken door, and emerge below the dam. | GOTO(NE_RESERVOIR)
|
||||
|
||||
### Office ###
|
||||
### Break Room ###
|
||||
### Control Room ###
|
||||
|
@ -4,3 +4,5 @@ PLANTS_SAVED|0
|
||||
OPENED_DOOR|0
|
||||
CABIN_ROBOT_DESTROYED|0
|
||||
ASKED_FOR_WALKTHROUGH|0
|
||||
SEARCHED_SHELVES|0
|
||||
FOUND_CLIFF|0
|
||||
|
@ -39,3 +39,9 @@ TALK|TALK,SPEAK
|
||||
WALKTHROUGH|WALKTHROUGH,GUIDE
|
||||
CABIN|CABIN,COTTAGE,HOUSE
|
||||
RESERVOIR|RESERVOIR
|
||||
SHELVES|SHELVES,SHELF
|
||||
ANVIL|ANVIL
|
||||
DRINK|DRINK
|
||||
WATER|WATER
|
||||
GLOVES|GLOVES,GLOVE
|
||||
CLIFF|CLIFF,VALLEY
|
||||
|
@ -81,6 +81,8 @@ Effect *create_effect(Game *g, const char *string) {
|
||||
e->type = EFFECT_DESTROY_ITEM;
|
||||
} else if (strcmp(token, "CHECK_INVENTORY") == 0) {
|
||||
e->type = EFFECT_CHECK_INVENTORY;
|
||||
} else {
|
||||
printf("Unknown effect %s\n", token);
|
||||
}
|
||||
|
||||
token = strtok_r(NULL, ")", &strtok_guy);
|
||||
|
@ -93,6 +93,7 @@ void change_current_room(Game *g, Room *r) {
|
||||
g->current_room = r;
|
||||
if (!r->visited) {
|
||||
push_line_to_log(g->input->log, find_room_in(g)->description);
|
||||
log_items_in_room(g, g->current_room);
|
||||
}
|
||||
r->visited = true;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user