-
Notifications
You must be signed in to change notification settings - Fork 60
/
Copy pathsetup_ek.json
67 lines (67 loc) · 2.39 KB
/
setup_ek.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
61
62
63
64
65
66
67
{
"general":
{
"loot_type":"manual",
"anti_trap":"weapon"
},
"script_options": {
"hours_leave": [9]
},
"containers": {
"gold_bp":"Shopping Bag",
"loot_bp":"Red Backpack"
},
"tools": {
"rope": {"name":"rope", "id": 3003}
},
"items":
{
"jagged sword": {"hotkey":"1", "id":7774, "use":"equip"},
"knife": {"hotkey":"2", "id":3291, "use":"equip"},
"mana potion": {"hotkey":"f1", "id":268, "use":"self"},
"health potion": {"hotkey":"f2", "id":266, "use":"self"}
},
"spells":
{
"exura ico":"r"
},
"healing":
[
{"type":"hp", "below_percent":60, "use_item":"health potion", "priority":3},
{"type":"hp", "below_percent":90, "use_spell":"exura ico", "min_mana_percent":20, "priority":2},
{"type":"mp", "below_percent":20, "use_item":"mana potion", "priority":1},
{"type":"hp", "below_percent":101, "use_spell":"exura ico", "min_mana_percent":95, "priority":0, "cooldown":30}
],
"hunt_config": {
"cap_leave": 50,
"mana_name": "mana potion",
"take_mana": 0,
"mana_leave": -1,
"health_name": "health potion",
"take_health": 5,
"health_leave": 3
},
"label_actions": [
{"label":"activate_stop_target_low", "action":"set_persistent_interval", "args": {"persistent_alias":"stop_target_low", "interval":2}},
{"label":"deactivate_stop_target_low", "action":"set_persistent_interval", "args": {"persistent_alias":"stop_target_low", "interval":99999}},
{"label":"equip_strong_weapon", "action":"swap_equip", "use_in_battle":true, "args":{"item_equip":"jagged sword", "item_unequip":"knife", "selected_monsters":"all", "amount":0, "slot":"weapon"}},
{"label":"equip_weak_weapon", "action":"swap_equip", "use_in_battle":true, "args":{"item_equip":"knife", "item_unequip":"jagged sword", "selected_monsters":"all", "amount":0, "slot":"weapon"}}
],
"persistent_actions": [
{"alias":"stop_target_low", "action": "stop_target_no_supplies", "interval": 4, "args": {"mana":false, "cap":false, "health":true}},
{"action":"eat_food", "interval":30, "use_in_battle":true, "args":{"hotkey":"f11"}},
{"action":"lure_monsters", "interval":1, "args":{"count":2, "min_count":2}}
],
"target_monsters":
[
{"name":"Rotworm", "action":"follow", "loot":true}
],
"target_spells": [],
"loot":
[
{"name":"gold coin", "action":"loot", "dest":"gold_bp"},
{"name":"gold coins", "action":"loot", "dest":"gold_bp"},
{"name":"meat", "action":"use"},
{"name":"ham", "action":"use"}
]
}