-
Notifications
You must be signed in to change notification settings - Fork 60
/
Copy pathsetup_mage.json
60 lines (60 loc) · 1.48 KB
/
setup_mage.json
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
{
"general":
{
"loot_type":"manual"
},
"script_options": {
"hours_leave": [9.5]
},
"containers":
{
"loot_bp":"Backpack"
},
"tools":
{
"rope": {"name":"rope", "id": 3003}
},
"items":
{
"mana potion": {"hotkey":"f1", "id":268, "use":"self"},
"honeycomb": {"hotkey":"f3", "id":5902, "use":"use"}
},
"spells":
{
"exura infir":"r"
},
"healing":
[
{"type":"hp", "below_percent":90, "use_spell":"exura infir", "min_mana_percent":20, "priority":2},
{"type":"mp", "below_percent":20, "use_item":"mana potion", "priority":1}
],
"hunt_config": {
"cap_leave": 8,
"mana_name": "mana potion",
"take_mana": 5,
"mana_leave": 1
},
"label_actions":
[
{"label":"count", "action":"conditional_jump_item_count_below", "args": {"item_name":"honeycomb", "amount":5, "label_jump":"continue", "label_skip":"leave"}}
],
"persistent_actions": [],
"target_monsters":
[
{"name":"Wasp", "action":"follow", "loot":true},
{"name":"Wolf", "action":"follow", "loot":true},
{"name":"Starving Wolf", "action":"follow", "loot":true},
{"name":"Deer", "action":"follow", "loot":true},
{"name":"Poacher", "action":"follow", "loot":false}
],
"target_spells": [],
"loot":
[
{"name":"gold coin", "action":"loot", "dest":"loot_bp"},
{"name":"gold coins", "action":"loot", "dest":"loot_bp"},
{"name":"honeycomb", "action":"loot", "dest":"loot_bp"},
{"name":"honeycombs", "action":"loot", "dest":"loot_bp"},
{"name":"ham", "action":"use"},
{"name":"meat", "action":"use"}
]
}