2019-09-09 22:41:25 +02:00
|
|
|
--BITER BATTLES CONFIG--
|
2019-04-28 19:38:44 +02:00
|
|
|
|
2019-11-23 11:45:43 +01:00
|
|
|
local bb_config = {
|
2021-03-24 16:46:00 +01:00
|
|
|
--Optional custom team names, can also be modified via "Team Manager"
|
|
|
|
['north_side_team_name'] = 'Team North',
|
|
|
|
['south_side_team_name'] = 'Team South',
|
|
|
|
--TERRAIN OPTIONS--
|
2021-03-30 16:10:10 +02:00
|
|
|
['match_mirror'] = false, --If both sides should match in terrain generation
|
2021-03-24 16:46:00 +01:00
|
|
|
['border_river_width'] = 36, --Approximate width of the horizontal impassable river seperating the teams. (values up to 100)
|
|
|
|
['builders_area'] = true, --Grant each side a peaceful direction with no nests and biters?
|
|
|
|
['random_scrap'] = true, --Generate harvestable scrap around worms randomly?
|
|
|
|
--BITER SETTINGS--
|
|
|
|
['max_active_biters'] = 1280, --Maximum total amount of attacking units per side.
|
|
|
|
['max_group_size'] = 288, --Maximum unit group size.
|
|
|
|
['biter_timeout'] = 162000, --Time it takes in ticks for an attacking unit to be deleted. This prevents perma stuck units.
|
2021-03-30 16:10:10 +02:00
|
|
|
['bitera_area_distance'] = 512, --Distance to the biter area.
|
|
|
|
--CHEATY STARTS
|
|
|
|
['spawn_turrets_at_silo'] = false, --This spawns two turrets near the silo of each team.
|
|
|
|
['additional_starting_resources'] = false --This gives each starting player 10 burner-mining-drill to skip the start.
|
2019-09-18 21:56:43 +02:00
|
|
|
}
|
2019-11-23 11:45:43 +01:00
|
|
|
|
2021-03-24 16:46:00 +01:00
|
|
|
return bb_config
|