mirror of
https://github.com/ComfyFactory/ComfyFactorio.git
synced 2025-01-06 00:23:49 +02:00
28 lines
1.5 KiB
Lua
28 lines
1.5 KiB
Lua
--BITER BATTLES CONFIG FILE--
|
|
|
|
bb_config = {
|
|
--GENERAL SETTINGS
|
|
["blueprint_library_importing"] = false, --Allow the importing of blueprints from the blueprint library?
|
|
["blueprint_string_importing"] = false, --Allow the importing of blueprints via blueprint strings?
|
|
|
|
--MAP PREGENERATION
|
|
["map_pregeneration_radius"] = 31, --Radius in chunks to pregenerate at the start of the map.
|
|
["fast_pregen"] = false, --Force fast pregeneration.
|
|
|
|
--TEAM SETTINGS
|
|
["north_side_team_name"] = "North", --Name in the GUI of Team North.
|
|
["south_side_team_name"] = "South", --Name in the GUI of Team South.
|
|
["team_balancing"] = true, --Should players only be able to join a team that has less or equal members than the opposing team?
|
|
["only_admins_vote"] = false, --Are only admins able to vote on the global difficulty?
|
|
|
|
--TERRAIN OPTIONS
|
|
["border_river_width"] = 29, --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"] = 2500, --Maximum total amount of attacking units per side.
|
|
["max_group_size"] = 256, --Maximum unit group size.
|
|
["biter_timeout"] = 54000, --Time it takes in ticks for an attacking unit to be deleted. This prevents perma stuck units.
|
|
["bitera_area_distance"] = 416 --Distance to the biter area.
|
|
} |