actions.heritage 766 B

1234567891011121314151617181920
  1. /* License: CC0 */
  2. /* Actions are what has been classicly regarded to as verbs. You define a specific action, the requirements and the result */
  3. action(write_note|use_pen):
  4. succeed: You take a deep breath and start writing down your feelings on the piece of paper, creating a note for your parents.
  5. require_inventory: paper, pen
  6. lose: paper
  7. gain: note
  8. action(put_note_on_table|leave_note|drop_note|put_down_note):
  9. succeed: You put the note on the table.
  10. require_inventory: note
  11. require_here: table
  12. drop: note
  13. action(read_text_message|read_message|read_messages|check_phone|check_message|check_messages):
  14. succeed: Mom: Please come home #(can_go_home=1)#
  15. fail: I don't have any unread messages
  16. equals: ready_for_phone, 1