forked from CloudBotScripts/scripts
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup_mage.json
87 lines (87 loc) · 3.14 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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
{
"general":
{
"loot_type":"manual",
"loot_priority":"first"
},
"script_options": {
"hours_leave": [9]
},
"containers":
{
"loot_bp":"Red Backpack"
},
"tools": {},
"items":
{
"mana potion": {"hotkey":"e", "id":268, "use":"self"},
"health potion": {"hotkey":"f2", "id":266, "use":"self"},
"brown mushroom": {"hotkey":"f11", "id":3725, "use":"use"}
},
"spells":
{
"exura":"r",
"exori infir tera":"q"
},
"healing":
[
{"type":"hp", "below_percent":50, "use_item":"health potion", "priority":5},
{"type":"hp", "below_percent":85, "use_spell":"exura", "min_mana_percent":10, "priority":4},
{"type":"mp", "below_percent":30, "use_item":"mana potion", "priority":3}
],
"hunt_config": {
"cap_leave": 30,
"mana_name": "mana potion",
"take_mana": 50,
"mana_leave": 45,
"health_name": "health potion",
"take_health": 5,
"health_leave": 2
},
"persistent_actions": [
{"action":"drop_items", "interval":60, "args":{"names":["sabre", "skull", "dagger", "empty potion flask"]}},
{"action":"anti_paralyze", "interval":1, "args":["r"]}
],
"target_monsters":
[
{"name":"Poison Spider", "action":"follow", "loot":false},
{"name":"Bat", "action":"follow", "loot":false},
{"name":"Amazon", "action":"follow", "loot":true},
{"name":"Valkyrie", "action":"follow", "loot":true},
{"name":"Bear", "action":"follow", "loot":true},
{"name":"Witch", "action":"follow", "loot":true},
{"name":"Mummy", "action":"follow", "loot":true},
{"name":"Ghoul", "action":"follow", "loot":true},
{"name":"Lion", "action":"follow", "loot":true},
{"name":"Xenia", "action":"follow", "loot":false}
],
"target_spells": [
{"name":"exori infir tera", "min_mana_percent":10, "priority":1, "cooldown":2, "monsters":["Amazon", "Valkyrie", "Witch", "Feverish Citizen"]}
],
"loot": [
{"name":"bear paw", "action":"loot", "dest":"loot_bp"},
{"name":"protective charm", "action":"loot", "dest":"loot_bp"},
{"name":"mini mummy", "action":"loot", "dest":"loot_bp"},
{"name":"stuffed toad", "action":"loot", "dest":"loot_bp"},
{"name":"witch hat", "action":"loot", "dest":"loot_bp"},
{"name":"brown piece of cloth", "action":"loot", "dest":"loot_bp"},
{"name":"gauze bandage", "action":"loot", "dest":"loot_bp"},
{"name":"small diamond", "action":"loot", "dest":"loot_bp"},
{"name":"silver dagger", "action":"loot", "dest":"loot_bp"},
{"name":"yellow piece of cloth", "action":"loot", "dest":"loot_bp"},
{"name":"health potion", "action":"loot", "dest":"loot_bp"},
{"name":"rotten piece of cloth", "action":"loot", "dest":"loot_bp"},
{"name":"flask of embalming fluid", "action":"loot", "dest":"loot_bp"},
{"name":"life ring", "action":"loot", "dest":"loot_bp"},
{"name":"necrotic rod", "action":"loot", "dest":"loot_bp"},
{"name":"black pearl", "action":"loot", "dest":"loot_bp"},
{"name":"witch broom", "action":"loot", "dest":"loot_bp"},
{"name":"ghoul snack", "action":"loot", "dest":"loot_bp"},
{"name":"girlish hair decoration", "action":"loot", "dest":"loot_bp"},
{"name":"bag of apple slices", "action":"loot", "dest":"loot_bp"},
{"name":"crystal ring", "action":"loot", "dest":"loot_bp"},
{"name":"brown bread", "action":"use"},
{"name":"meat", "action":"use"},
{"name":"ham", "action":"use"}
]
}