-
Notifications
You must be signed in to change notification settings - Fork 0
/
custom_actions.yml
63 lines (53 loc) · 1.88 KB
/
custom_actions.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
---
look_at_rubble:
- say look_at_rubble
- verify location gemstone mountain
- visible gemstone
- say look_at_rubble_hidden
- quiet
give_gemstone_to_wizard:
- remove gemstone
- visible gemstone_shards
give_gemstone_shards_to_blacksmith:
- verify location rusty_sword i error_no_rusty_sword
- remove gemstone_shards
- remove rusty_sword
- add shining_sword
use_shining_sword_on_grelok:
- exit
talk_to_priest:
- verify boolean given_quest_holy_water false talk_to_priest
- set constraint-boolean given_quest_holy_water true
- add jug
- add chapel_key
- say talk_to_priest
- set message talk_to_priest talk_to_priest_2
- quiet
use_rusty_sword_on_zombie:
- verify boolean zombie_blocks_chapel_door true use_rusty_sword_on_zombie
- set constraint-boolean zombie_blocks_chapel_door false
- set constraint-location chapel-e constraint_chapel_door_locked
- set description-location chapel description_chapel_2
- set description-thing zombie description_zombie_2
- set description-thing open_grave description_open_grave_2
- say use_rusty_sword_on_zombie
- set message use_rusty_sword_on_zombie use_rusty_sword_on_zombie_2
- quiet
use_chapel_key_on_chapel_door:
- verify boolean zombie_blocks_chapel_door false constraint_chapel_door_blocked
- set constraint-boolean chapel_door_locked false
- set constraint-location chapel-e nil
- remove chapel_key
- set description-thing chapel_door description_chapel_door_2
use_jug_on_basin:
- verify boolean jug_contains_holy_water false error_jug_is_full
- set constraint-boolean jug_contains_holy_water true
- set description-thing jug description_jug_contains_holy_water
drink_from_jug:
- verify boolean jug_contains_holy_water true use_jug_empty
- say use_jug_full
- quiet
give_jug_to_priest:
- verify boolean jug_contains_holy_water true talk_to_priest
- remove jug
- set message talk_to_priest talk_to_priest_3