Add some missing actions
This commit is contained in:
parent
81275ea4e3
commit
20b892ed8f
@ -39,6 +39,7 @@ NORTH | IN(EAST_YARD) & ENABLED(PLANTS_SAVED) | 5 | You open the north gate and
|
||||
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 PLANTER | IN(EAST_YARD) & ENABLED(PLANTS_SAVED) | 20 | The planter is pretty wide, and has <HELP I AM NOT GOOD WITH PLANTS>. They're looking fairly green and healthy. 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. |
|
||||
@ -49,8 +50,8 @@ POUR BARREL | IN(EAST_YARD) & HAS_ITEM(FULL_BARREL) | 1000 | You pour the conten
|
||||
|
||||
### 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. |
|
||||
LOOK BARREL | IN(WEST_YARD) | 10 | The barrels are positioned to collect rainwater from the roof. All of them are empty. |
|
||||
LOOK BARREL | IN(WEST_YARD) & ITEM_HERE(FULL_BARREL) | 20 | 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)
|
||||
@ -77,6 +78,7 @@ LOOK DOOR | IN(NE_RESERVOIR) & ENABLED(OPENED_DOOR) | 10 | The door is very stur
|
||||
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(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. |
|
||||
USE REBAR | 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. |
|
||||
@ -100,6 +102,10 @@ UP | IN(NW_RESERVOIR) | 2 | You try to climb the rungs of the ladder, but they'r
|
||||
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. |
|
||||
CLIMB | 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. |
|
||||
CLIMB | IN(NW_RESERVOIR) & HAS_ITEM(GLOVES) | 50 | Cautiously, you use the rungs to climb to the top of the dam. | GOTO(DAM)
|
||||
CLIMB | IN(NW_RESERVOIR) & HAS_ITEM(FULL_BARREL) | 50 | You can't make the climb while carrying a barrel around. |
|
||||
CLIMB | 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. |
|
||||
@ -109,7 +115,9 @@ LOOK LADDER | IN(NW_RESERVOIR) | 2 | The rungs appear to be made of concrete. Th
|
||||
|
||||
### 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)
|
||||
DOWN | IN(DAM) & HAS_ITEM(GLOVES) | 10 | You carefully navigate the ladder and climb down to the ground. | GOTO(NW_RESERVOIR)
|
||||
CLIMB | IN(DAM) | 2 | Fearful of softlocking, you decide it's better to put your gloves on before climbing down. |
|
||||
CLIMB | IN(DAM) & HAS_ITEM(GLOVES) | 10 | You carefully navigate the ladder and 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. |
|
||||
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. |
|
||||
@ -156,8 +164,8 @@ TAKE PRYBAR | ITEM_HERE(PRYBAR) | 100 | You pick up the prybar. | TAKE(PRYBAR)
|
||||
DROP PRYBAR | HAS_ITEM(PRYBAR) | 100 | You drop the prybar. | DROP(PRYBAR)
|
||||
|
||||
### 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)
|
||||
WEST | IN(CLIFF) | 2 | There are thick woods in that direction. You don't see any way to go in without getting lost. |
|
||||
WEST | 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. |
|
||||
|
@ -59,3 +59,4 @@ KNOB|KNOB
|
||||
LEVER|LEVER
|
||||
HOOK|HOOK,SNAG,GRAP,CATCH
|
||||
WIRES|WIRES,WIRE,CABLE,CABLES
|
||||
CLIMB|CLIMB
|
||||
|
Loading…
Reference in New Issue
Block a user