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
MewMew 00e1f84dad Update
biter raffle replaced
outposts are no longer safe
attack group strength is reduced up to 50% for far away outposts
biters seek a random target as side target, before making their way to the silo
side targets are more likely chosen near the center of the map
variety in unit group types (biter only, spitters only, mixed)
unit groups spawn more close to their nests
2020-04-18 12:10:54 +02:00

20 lines
918 B
Lua

--BITER BATTLES CONFIG--
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",
--TERRAIN OPTIONS--
["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"] = 2000, --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.
["bitera_area_distance"] = 512 --Distance to the biter area.
}
return bb_config