thrive/01_text_adventure/data/actions.txt

14 lines
956 B
Plaintext
Raw Normal View History

2025-01-19 09:41:25 -05:00
QUIT | * | 1000 | Bye! | QUIT_GAME()
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 |
2025-01-19 09:25:55 -05:00
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. |