forked from ElevenGiants/eleven-gsjs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
config_alpha.js
39 lines (34 loc) · 987 Bytes
/
config_alpha.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
//#include config_prod.js
// multiplies health fall and tending interval lengths (i.e. 1 is "normal", more is slower)
var trant_growth_multiplier = 10;
// parameters for animal sadness; see getSadnessMax in items/include/animal_sadness.js
// the resulting maximum is halved for public streets
var population_controls = {
'npc_piggy': {
per_width: 2,
min_max: 6,
max_max: 10
},
'npc_butterfly': {
per_width: 1,
min_max: 4,
max_max: 6
},
'npc_chicken': {
per_width: 1,
min_max: 4,
max_max: 6
}
};
// no "live help" chat groups for now
this.live_help_groups = [];
this.newbie_live_help_groups = [];
// make all wall/floor/etc textures free
this.home_limits.UPGRADES_ARE_FREE = true;
// limit POL choice to the available templates
this.homes_interior_configs = {
meadows_int_default__high: this.homes_interior_configs.meadows_int_default__high,
};
this.homes_exterior_configs = {
meadow_ext_default_high: this.homes_exterior_configs.meadow_ext_default_high,
};