-
Notifications
You must be signed in to change notification settings - Fork 0
/
help.constants.js
50 lines (42 loc) · 1.33 KB
/
help.constants.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
49
50
/*
* Module code goes here. Use 'module.exports' to export things:
* module.exports.thing = 'a thing';
*
* You can import it from another modules like this:
* var mod = require('help.constants');
* mod.thing == 'a thing'; // true
*/
function Const() {};
Const.MAX_HARVESTERS = 4;
Const.MAX_UPGRADERS = 5;
Const.MAX_BUILDERS = 5;
Const.MAX_REPAIRERS = 1;
Const.MAX_WALLREPAIRERS = 1;
Const.MAX_SOLDATS = 1;
Const.MAX_HEALERS = 0;
Const.MAX_REMOTES = 0;
Const.MAX_SCOUTS = 0;
Const.MAX_AMBASSADORS = 0;
Const.MAX_MINERS = 2;
Const.ZOMBIE_TICK = 150;
Const.CPU_TRACK_TICKS = 100;
Const.DEBUG_ALL = false;
Const.HEADER_FREQUENCY = 3;
Const.COMPRESS = false;
Const.TRANSITION_COMP = false;
Const.TOWER_REPAIR_DELAY = 13;
Const.TOWER_REPAIR_THRESHOLD = .50;
Const.LINK_RUN_DELAY = 5;
Const.LINK_SEND_THRESHOLD = .40;
Const.PERCENT_HARVESTERS = 0.5;
Const.PERCENT_UPGRADERS = 0.2;
Const.PERCENT_BUILDERS = 0.2;
Const.PERCENT_REPAIRERS = 0.1;
Const.PERCENT_WALLREPAIRERS = 0.1;
Const.PERCENT_SOLDATS = 0.0;
Const.PERCENT_HEALERS = 0.0;
Const.PERCENT_REMOTES = 0;
Const.PERCENT_SCOUTS = 0;
Const.PERCENT_AMBASSADORS = 0;
Const.PERCENT_MINERS = 0;
module.exports = Const;