forked from tera-toolbox-mods/true-everful-nostrum
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsettings_structure.js
48 lines (48 loc) · 1.13 KB
/
settings_structure.js
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
module.exports = [
{
"key": "enabled",
"name": "Enable module",
"type": "bool"
},
{
"key": "nostrum_item",
"name": "Nostrum item for use",
"type": "select",
"options": [
{ "name": "Menma's Brave Multi-Nostrum", "key": 280060 },
{ "name": "Menma's Strong Multi-Nostrum", "key": 280061 }
]
},
{
"key": "use_savage",
"name": "Use Tempestuous Savage Draught",
"type": "bool"
},
{
"key": "hide_duration",
"name": "Hide duration of nostrum buff",
"type": "bool"
},
{
"key": "keep_resurrection_invincibility",
"name": "Do not overwrite phoenix and other resurrection buffs",
"type": "bool"
},
{
"key": "dungeon_only",
"name": "Active only in dungeons",
"type": "bool"
},
{
"key": "civil_unrest",
"name": "Active in Civil Unrest",
"type": "bool"
},
{
"key": "interval",
"name": "Active nostrum check interval",
"type": "range",
"min": 500,
"max": 5000
}
];