1
0
mirror of https://github.com/ComfyFactory/ComfyFactorio.git synced 2025-01-10 00:43:27 +02:00
ComfyFactorio/maps/biter_battles_v2/config.lua

20 lines
918 B
Lua
Raw Normal View History

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 = {
--Optional custom team names, can also be modified via "Team Manager"
["north_side_team_name"] = "Team North",
["south_side_team_name"] = "Team South",
2019-09-09 22:41:25 +02:00
--TERRAIN OPTIONS--
["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-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.
["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.
["bitera_area_distance"] = 512 --Distance to the biter area.
}
2019-11-23 12:45:43 +02:00
return bb_config