15 lines
987 B
Plaintext
15 lines
987 B
Plaintext
QUIT | * | 1000 | Bye! | QUIT_GAME()
|
|
LOOK | * | 1 | * | LOOK_ROOM()
|
|
NORTH | * | 1 | You can't go north from here. |
|
|
SOUTH | * | 1 | You can't go south from here. |
|
|
EAST | * | 1 | You can't go east from here. |
|
|
WEST | * | 1 | You can't go west from here. |
|
|
NORTH | IN(FIRST_ROOM) | 10 | You head through the door. | GOTO(SECOND_ROOM)
|
|
SOUTH | IN(SECOND_ROOM) | 10 | You head back through the door. | GOTO(FIRST_ROOM)
|
|
EAST | IN(FIRST_ROOM) | 10 | You crouch under the beam and enter the room. | GOTO(LAST_ROOM)
|
|
WEST | IN(LAST_ROOM) | 10 | You crouch under the beam and return to the room. | GOTO(FIRST_ROOM)
|
|
PULL | * | 1 | You don't see anything to pull |
|
|
PULL | IN(FIRST_ROOM) | 10 | What do you want to pull? |
|
|
PULL LEVER | IN(FIRST_ROOM) | 100 | You pull the lever. Nice. | ENABLE(LEVER_PULLED)
|
|
PULL LEVER | IN(FIRST_ROOM) & ENABLED(LEVER_PULLED) | 1000 | You already pulled it. |
|