Finish the adventure
This commit is contained in:
parent
15469933a3
commit
6844a1ca84
@ -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(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>
|
||||
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, EAST, THROW PRYBAR, TAKE PRYBAR, OPEN CABINET, READ BOOK, WEST, WEST, HIT ROBOT, TAKE KEY, EAST, NORTH, HOOK WIRES, INSERT KEY, PUSH BUTTON
|
||||
|
||||
### Hut ###
|
||||
EAST | IN(HUT) | 2 | You walk into your east yard. | GOTO(EAST_YARD)
|
||||
@ -189,6 +189,11 @@ LOOK SHELF | IN(OFFICE) | 2 | You won't be getting a good look anytime soon with
|
||||
LOOK DESK | IN(OFFICE) & ENABLED(OFFICE_ROBOT_DESTROYED) | 5 | The desks are mostly empty aside from some stationary and long-dry ballpoint pens. |
|
||||
LOOK CABINET | IN(OFFICE) & ENABLED(OFFICE_ROBOT_DESTROYED) | 5 | The first cabinet you open, a book falls out of it onto the floor. The rest are filled with mostly-empty yellow folders. | DROP(BOOK) & ENABLE(CABINET_OPENED)
|
||||
LOOK CABINET | IN(OFFICE) & ENABLED(OFFICE_ROBOT_DESTROYED) & ENABLED(CABINET_OPENED) | 10 | The cabinets are filled with mostly-empty yellow folders. |
|
||||
OPEN DESK | IN(OFFICE) | 2 | You can't get to any desks with that robot hovering there. |
|
||||
OPEN CABINET | IN(OFFICE) | 2 | You can't get to any cabinets with that robot hovering there. |
|
||||
OPEN DESK | IN(OFFICE) & ENABLED(OFFICE_ROBOT_DESTROYED) | 5 | The desks are mostly empty aside from some stationary and long-dry ballpoint pens. |
|
||||
OPEN CABINET | IN(OFFICE) & ENABLED(OFFICE_ROBOT_DESTROYED) | 5 | The first cabinet you open, a book falls out of it onto the floor. The rest are filled with mostly-empty yellow folders. | DROP(BOOK) & ENABLE(CABINET_OPENED)
|
||||
OPEN CABINET | IN(OFFICE) & ENABLED(OFFICE_ROBOT_DESTROYED) & ENABLED(CABINET_OPENED) | 10 | The cabinets are filled with mostly-empty yellow folders. |
|
||||
LOOK SHELF | IN(OFFICE) & ENABLED(OFFICE_ROBOT_DESTROYED) | 5 | There are plenty of books on the shelves, but they're all dense technical manuals, nothing you feel like taking the time to study. |
|
||||
LOOK BOOK | ITEM_HERE(BOOK) | 2 | The book is titled 'Dam Operation For Dummies'. It's probably worth giving it a read! |
|
||||
LOOK BOOK | HAS_ITEM(BOOK) | 2 |The book is titled 'Dam Operation For Dummies'. It's probably worth giving it a read! |
|
||||
@ -208,6 +213,7 @@ HIT ROBOT | IN(BREAK_ROOM) | 10 | With what, your hands? You won't be able to ge
|
||||
HIT ROBOT | IN(BREAK_ROOM) & HAS_ITEM(PRYBAR) | 20 | Bang! You smack the robot like a baseball and it smacks into a wall. It emits a cloud of sparks and falls to the ground. | ENABLE(BREAK_ROOM_ROBOT_DESTROYED)
|
||||
HIT ROBOT | IN(BREAK_ROOM) & HAS_ITEM(HAMMER) | 15 | The hammer doesn't have quite enough reach to hit the robot. |
|
||||
HIT ROBOT | IN(BREAK_ROOM) & ENABLED(BREAK_ROOM_ROBOT_DESTROYED) | 30 | It's already broken, no need to hit it any more. |
|
||||
THROW PRYBAR | IN(BREAK_ROOM) & HAS_ITEM(PRYBAR) | 20 | You throw the prybar at the little robot, but it's too small to hit. Luckily, the prybar falls somewhere where you can pick it up. | DROP(PRYBAR)
|
||||
LOOK KEY | IN(BREAK_ROOM) | 2 | It's a short key on a keyring. It's too far away to grab from here. |
|
||||
LOOK KEY | IN(BREAK_ROOM) & ENABLED(BREAK_ROOM_ROBOT_DESTROYED) | 5 | It's a short key on a keyring. You can go grab it if you want. |
|
||||
LOOK KEY | HAS_ITEM(KEY) | 15 | It's a short key on a keyring. |
|
||||
@ -216,3 +222,52 @@ TAKE KEY | IN(BREAK_ROOM) & ENABLED(BREAK_ROOM_ROBOT_DESTROYED) | 5 | Okay, you
|
||||
DROP KEY | HAS_ITEM(KEY) | 2 | It's pretty small, you should hold onto it unless you need it. |
|
||||
|
||||
### Control Room ###
|
||||
SOUTH | IN(CONTROL_ROOM) | 2 | You step back out into the hallway | GOTO(DAM_INSIDE)
|
||||
LOOK ROBOT | IN(CONTROL_ROOM) | 2 | This robot, as usual, bristles with antennas, and it has a conspicuous bundle of wires hanging out of its lower half. It's quite large, and looks very sturdy. |
|
||||
LOOK ROBOT | IN(CONTROL_ROOM) & ENABLED(CONTROL_ROOM_ROBOT_DESTROYED) | 5 | The robot lies motionless next to the console. |
|
||||
INSERT KEY | * | 2 | What key? |
|
||||
INSERT KEY | HAS_ITEM(KEY) | 3 | Where do you want to insert it? |
|
||||
INSERT KEY | IN(CONTROL_ROOM) | 5 | You don't have a key. |
|
||||
INSERT KEY | IN(CONTROL_ROOM) & HAS_ITEM(KEY) | 10 | You can't get close enough to the console to insert the key while that robot's in the way. |
|
||||
INSERT KEY | IN(CONTROL_ROOM) & ENABLED(CONTROL_ROOM_ROBOT_DESTROYED) & HAS_ITEM(KEY) | 100 | You look around for a keyhole. You find one in the console and insert the key into it. | DESTROY(KEY) & ENABLE(KEY_INSERTED)
|
||||
INSERT KEY | IN(CONTROL_ROOM) & ENABLED(CONTROL_ROOM_ROBOT_DESTROYED) & ENABLED(READ_BOOK) & HAS_ITEM(KEY) | 200 | You insert the key into the hole mentioned by the manual. | DESTROY(KEY) & ENABLE(KEY_INSERTED)
|
||||
INSERT KEY | IN(CONTROL_ROOM) & ENABLED(CONTROL_ROOM_ROBOT_DESTROYED) | 50 | There's a keyhole on the console, but you have nothing to put into it. |
|
||||
INSERT KEY | IN(CONTROL_ROOM) & ENABLED(CONTROL_ROOM_ROBOT_DESTROYED) & ENABLED(READ_BOOK) | 75 | You see the keyhole on the console, but you have nothing to put into it. |
|
||||
INSERT KEY | IN(CONTROL_ROOM) & ENABLED(CONTROL_ROOM_ROBOT_DESTROYED) & ENABLED(KEY_INSERTED) | 200 | The key's already in. |
|
||||
USE KEY | * | 2 | What key? |
|
||||
USE KEY | HAS_ITEM(KEY) | 3 | Where do you want to use it? |
|
||||
USE KEY | IN(CONTROL_ROOM) | 5 | You don't have a key. |
|
||||
USE KEY | IN(CONTROL_ROOM) & HAS_ITEM(KEY) | 10 | You can't get close enough to the console to use the key while that robot's in the way. |
|
||||
USE KEY | IN(CONTROL_ROOM) & ENABLED(CONTROL_ROOM_ROBOT_DESTROYED) & HAS_ITEM(KEY) | 100 | You look around for a keyhole. You find one in the console and insert the key into it. | DESTROY(KEY) & ENABLE(KEY_INSERTED)
|
||||
USE KEY | IN(CONTROL_ROOM) & ENABLED(CONTROL_ROOM_ROBOT_DESTROYED) & ENABLED(READ_BOOK) & HAS_ITEM(KEY) | 200 | You insert the key into the hole mentioned by the manual. | DESTROY(KEY) & ENABLE(KEY_INSERTED)
|
||||
USE KEY | IN(CONTROL_ROOM) & ENABLED(CONTROL_ROOM_ROBOT_DESTROYED) | 50 | There's a keyhole on the console, but you have nothing to put into it. |
|
||||
USE KEY | IN(CONTROL_ROOM) & ENABLED(CONTROL_ROOM_ROBOT_DESTROYED) & ENABLED(READ_BOOK) | 75 | You see the keyhole on the console, but you have nothing to put into it. |
|
||||
USE KEY | IN(CONTROL_ROOM) & ENABLED(CONTROL_ROOM_ROBOT_DESTROYED) & ENABLED(KEY_INSERTED) | 200 | The key's already in. |
|
||||
TURN KEY | IN(CONTROL_ROOM) & ENABLED(KEY_INSERTED) | 100 | It's not that kind of key, you don't need to turn it. |
|
||||
TURN KEY | HAS_ITEM(KEY) | 100 | You turn the key over in your hands. To use it, you'll need to USE KEY or INSERT KEY somewhere with a keyhole. |
|
||||
TURN | * | 1 | You've got nothing to turn. |
|
||||
PRESS BUTTON | IN(CONTROL_ROOM) | 2 | You can't get close enough while that robot's in the way. |
|
||||
PRESS BUTTON | IN(CONTROL_ROOM) & ENABLED(CONTROL_ROOM_ROBOT_DESTROYED) | 5 | You don't know which button to press. |
|
||||
PRESS BUTTON | IN(CONTROL_ROOM) & ENABLED(CONTROL_ROOM_ROBOT_DESTROYED) & ENABLED(READ_BOOK) | 10 | According to the manual, you need to insert a key before pressing the button. |
|
||||
PRESS BUTTON | IN(CONTROL_ROOM) & ENABLED(CONTROL_ROOM_ROBOT_DESTROYED) & ENABLED(READ_BOOK) & ENABLED(KEY_INSERTED) | 1000 | With a mighty crunch, long-dormant machinery noisily comes to life. Fearing for the structural stability of the room, you hustle outside. With an ear-piercing screech, the rusty metal floodgates begin to lower. Water pours out of the holes and falls in an enormous waterfall into the reservoir. The swarms of robots continue to patrol the now-empty dam, and the reservoir is completely full of beautiful blue water. It won't last forever, but for now, you'll have enough water to thrive. | ENABLE(GAME_COMPLETE) & GOTO(END_OF_GAME)
|
||||
TURN KNOB | IN(CONTROL_ROOM) | 2 | You can't get close enough while that robot's in the way. |
|
||||
TURN KNOB | IN(CONTROL_ROOM) & ENABLED(CONTROL_ROOM_ROBOT_DESTROYED) | 5 | You don't know which knob to turn. |
|
||||
TURN KNOB | IN(CONTROL_ROOM) & ENABLED(CONTROL_ROOM_ROBOT_DESTROYED) & ENABLED(READ_BOOK) | 10 | According to the manual, you shouldn't need to turn any knobs. |
|
||||
PULL LEVER | * | 1 | Wrong leverrrrrrrrrrrrrr! |
|
||||
PULL LEVER | IN(CONTROL_ROOM) | 2 | You can't get close enough while that robot's in the way. |
|
||||
PULL LEVER | IN(CONTROL_ROOM) & ENABLED(CONTROL_ROOM_ROBOT_DESTROYED) | 5 | You don't know which lever to pull. |
|
||||
PULL LEVER | IN(CONTROL_ROOM) & ENABLED(CONTROL_ROOM_ROBOT_DESTROYED) & ENABLED(READ_BOOK) | 10 | According to the manual, you shouldn't need to pull any levers. |
|
||||
|
||||
HIT ROBOT | IN(CONTROL_ROOM) | 5 | With what, your hands? You wouldn't make a dent. |
|
||||
HIT ROBOT | IN(CONTROL_ROOM) & HAS_ITEM(PRYBAR) | 10 | This robot is pretty big, simply hitting it isn't going to damage it. |
|
||||
HIT ROBOT | IN(CONTROL_ROOM) & ENABLED(CONTROL_ROOM_ROBOT_DESTROYED) | 30 | There's no reason to hit the robot, it's not a threat any more. |
|
||||
THROW PRYBAR | IN(CONTROL_ROOM) & HAS_ITEM(PRYBAR) | 5 | This robot is pretty big, without an obvious weak point that could be destroyed with even a well-aimed throw. |
|
||||
THROW PRYBAR | IN(CONTROL_ROOM) & HAS_ITEM(PRYBAR) & ENABLED(CONTROL_ROOM_ROBOT_DESTROYED) | 20 | You toss the prybar across the room, avoiding the console. It clatters to the ground. | DROP(PRYBAR)
|
||||
HOOK ROBOT | IN(CONTROL_ROOM) | 5 | Those wires look tempting, but you don't have anything to hook them with. |
|
||||
HOOK ROBOT | IN(CONTROL_ROOM) & HAS_ITEM(HAMMER) | 10 | Those wires look tempting, but your hammer isn't long enough to snag them. |
|
||||
HOOK ROBOT | IN(CONTROL_ROOM) & HAS_ITEM(PRYBAR) | 20 | Yoink! You deftly hook the bent end of the prybar to the exposed wires and pull. There's a shower of sparks, and the robot emits a whine and crashes to the ground. | ENABLE(CONTROL_ROOM_ROBOT_DESTROYED)
|
||||
HOOK ROBOT | IN(CONTROL_ROOM) & ENABLED(CONTROL_ROOM_ROBOT_DESTROYED) | 50 | You've already destroyed the robot. |
|
||||
HOOK WIRES | IN(CONTROL_ROOM) | 5 | Those wires look tempting, but you don't have anything to hook them with. |
|
||||
HOOK WIRES | IN(CONTROL_ROOM) & HAS_ITEM(HAMMER) | 10 | Those wires look tempting, but your hammer isn't long enough to snag them. |
|
||||
HOOK WIRES | IN(CONTROL_ROOM) & HAS_ITEM(PRYBAR) | 20 | Yoink! You deftly hook the bent end of the prybar to the exposed wires and pull. There's a shower of sparks, and the robot emits a whine and crashes to the ground. | ENABLE(CONTROL_ROOM_ROBOT_DESTROYED)
|
||||
HOOK WIRES | IN(CONTROL_ROOM) & ENABLED(CONTROL_ROOM_ROBOT_DESTROYED) | 50 | You've already destroyed the robot. |
|
||||
|
@ -12,4 +12,5 @@ READ_BOOK|0
|
||||
BREAK_ROOM_ROBOT_DESTROYED|0
|
||||
KEY_TAKEN|0
|
||||
CONTROL_ROOM_ROBOT_DESTROYED|0
|
||||
KEY_TURNED|0
|
||||
KEY_INSERTED|0
|
||||
GAME_COMPLETE|0
|
||||
|
@ -10,7 +10,7 @@ NW_RESERVOIR | * | 1 | You're at the foot of the dam. On this side, there is a s
|
||||
DAM | * | 1 | The dam is gigantic, and pretty much completely full of bright blue water. Swarming above the water are a flock of security robots; you can't spend much time up here or else you'll surely be seen. You can climb back down the ladder.
|
||||
TRAIL | * | 1 | The trees in these woods are dense, but not especially leafy. The trail leads east and douth.
|
||||
OUT_CABIN | * | 1 | You're standing in front of a ruins of a cabin in the forest, to the west of the path. Hovering menacingly in front is a tiny security robot. The path through the woods goes north and east.
|
||||
OUT_CABIN | * | 1 | You're standing in front of a ruins of a cabin in the forest, to the west of the path. The path through the woods goes north and east.
|
||||
OUT_CABIN | ENABLED(CABIN_ROBOT_DESTROYED) | 2 | You're standing in front of a ruins of a cabin in the forest, to the west of the path. The path through the woods goes north and east.
|
||||
IN_CABIN | * | 1 | The cabin, though pretty much destroyed at this point, seems like it was a cozy place some time in the past. An anvil stands in the corner, surrounded by shelves. The exit is to the east.
|
||||
CLIFF | * | 1 | You're on top of an enormous, steep cliff. Beneath you, the valley stretches out far into the distance. The bright sun illuminates the forests and plains. Your compound is north of here, and there are thick woods to the west.
|
||||
CLIFF | ENABLED(FOUND_CLIFF) | 2 | You're on top of an enormous, steep cliff. Beneath you, the valley stretches out far into the distance. The bright sun illuminates the forests and plains. Your compound is north of here, and there are thick woods, with a trail leading to the cabin, to the west.
|
||||
@ -21,3 +21,4 @@ BREAK_ROOM | * | 1 | This appears to be the break room. Some tables, chairs, and
|
||||
BREAK_ROOM | ENABLED(BREAK_ROOM_ROBOT_DESTROYED) | 2 | This appears to be the break room. Some tables, chairs, and counters are here. On a hook on the far cabinet, there is a ring with a single key on it. The hallway is east of here.
|
||||
CONTROL_ROOM | * | 1 | This room houses an enormous console, with knobs, buttons, and levers all over it. In front of the console, a large security robot is hovering. The hallway is south of here.
|
||||
CONTROL_ROOM | ENABLED(CONTROL_ROOM_ROBOT_DESTROYED) | 2 | This room houses an enormous console, with knobs, buttons, and levers all over it. The hallway is south of here.
|
||||
END_OF_GAME | * | 1 | Thank you for playing Thrive! I sincerely hope you enjoyed it!
|
||||
|
@ -14,3 +14,4 @@ DAM_INSIDE
|
||||
OFFICE
|
||||
BREAK_ROOM
|
||||
CONTROL_ROOM
|
||||
END_OF_GAME
|
||||
|
@ -52,3 +52,10 @@ BOOK|BOOK,MANUAL
|
||||
KEY|KEY,KEYRING
|
||||
READ|READ
|
||||
THROW|THROW,TOSS,CHUCK,HURL
|
||||
INSERT|INSERT,PUT
|
||||
TURN|TURN,TWIST
|
||||
BUTTON|BUTTON
|
||||
KNOB|KNOB
|
||||
LEVER|LEVER
|
||||
HOOK|HOOK,SNAG,GRAP,CATCH
|
||||
WIRES|WIRES,WIRE,CABLE,CABLES
|
||||
|
Loading…
Reference in New Issue
Block a user