2019-09-09 22:41:25 +02:00
|
|
|
--BITER BATTLES CONFIG--
|
2019-04-28 19:38:44 +02:00
|
|
|
|
2019-11-23 12:45:43 +02:00
|
|
|
local bb_config = {
|
2019-09-17 07:28:36 +02:00
|
|
|
--Optional custom team names, can also be modified via "Team Manager"
|
2019-09-18 21:56:43 +02:00
|
|
|
["north_side_team_name"] = "Team North",
|
|
|
|
["south_side_team_name"] = "Team South",
|
2019-09-09 22:41:25 +02:00
|
|
|
|
|
|
|
--TERRAIN OPTIONS--
|
2019-12-15 10:45:53 +02:00
|
|
|
["border_river_width"] = 36, --Approximate width of the horizontal impassable river seperating the teams. (values up to 100)
|
2019-07-13 15:21:12 +02:00
|
|
|
["builders_area"] = true, --Grant each side a peaceful direction with no nests and biters?
|
2019-09-22 11:13:32 +02:00
|
|
|
["random_scrap"] = true, --Generate harvestable scrap around worms randomly?
|
2019-09-18 21:56:43 +02:00
|
|
|
|
2019-09-09 22:41:25 +02:00
|
|
|
--BITER SETTINGS--
|
2020-09-03 05:50:00 +02:00
|
|
|
["max_active_biters"] = 1280, --Maximum total amount of attacking units per side.
|
2020-04-18 12:10:54 +02:00
|
|
|
["max_group_size"] = 288, --Maximum unit group size.
|
2020-01-22 15:12:04 +02:00
|
|
|
["biter_timeout"] = 162000, --Time it takes in ticks for an attacking unit to be deleted. This prevents perma stuck units.
|
2020-04-13 06:31:39 +02:00
|
|
|
["bitera_area_distance"] = 512 --Distance to the biter area.
|
2019-09-18 21:56:43 +02:00
|
|
|
}
|
2019-11-23 12:45:43 +02:00
|
|
|
|
|
|
|
return bb_config
|