forked from Erex147/WarBox
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdefault_config.json
More file actions
34 lines (34 loc) · 1001 Bytes
/
default_config.json
File metadata and controls
34 lines (34 loc) · 1001 Bytes
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
{
"warbox_config": [
{
"Id": "warbox_enable_factories",
"Type": "SWITCH",
"IconPath": "ui/icons/iconHideUI",
"BoolVal": true,
"Callback": "WarBoxActions:ToggleFactories"
},
{
"Id": "warbox_force_capture",
"Type": "SWITCH",
"IconPath": "ui/icons/iconKingdom",
"BoolVal": false,
"Callback": "WarBoxActions:ToggleForceCapture"
},
{
"Id": "warbox_army_limits",
"Type": "SWITCH",
"IconPath": "ui/Icons/iconArmyList",
"BoolVal": true,
"Callback": "WarBoxActions:ToggleArmyLimit"
},
{
"Id": "warbox_army_per_pop",
"Type": "INT_SLIDER",
"IconPath": "ui/Icons/iconArmyList",
"IntVal": 25,
"MinIntVal": 5,
"MaxIntVal": 100,
"Callback": "WarBoxActions:UpdateArmyPerPop"
}
]
}