2019-07-28 12:44:13 +02:00
|
|
|
local MGSP = require 'resources.map_gen_settings'
|
2021-01-03 17:35:53 +02:00
|
|
|
local ScenarioInfo = require 'features.gui.info'
|
2019-07-28 12:44:13 +02:00
|
|
|
|
|
|
|
local config = {
|
|
|
|
scenario_name = 'crashsite',
|
|
|
|
map_gen_settings = {
|
|
|
|
MGSP.grass_only,
|
|
|
|
MGSP.enable_water,
|
|
|
|
{
|
|
|
|
terrain_segmentation = 6,
|
|
|
|
water = 0.25
|
|
|
|
},
|
|
|
|
MGSP.starting_area_very_low,
|
|
|
|
MGSP.ore_oil_none,
|
|
|
|
MGSP.enemy_none,
|
|
|
|
MGSP.cliff_none
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
local Scenario = require 'map_gen.maps.crash_site.scenario'
|
2021-01-03 17:35:53 +02:00
|
|
|
ScenarioInfo.set_map_name('Crashsite')
|
|
|
|
ScenarioInfo.set_map_description('Capture outposts and defend against the biters.')
|
|
|
|
ScenarioInfo.add_map_extra_info(
|
2021-01-05 18:03:08 +02:00
|
|
|
[[
|
|
|
|
- Outposts have enemy turrets defending them.
|
|
|
|
- Outposts have loot and provide a steady stream of resources.
|
|
|
|
- Outpost markets to purchase items and outpost upgrades.
|
|
|
|
- Capturing outposts increases evolution.\n- Reduced damage by all player weapons, turrets, and ammo.
|
|
|
|
- Biters have more health and deal more damage.
|
|
|
|
- Biters and spitters spawn on death of entities.
|
|
|
|
]]
|
2021-01-03 17:35:53 +02:00
|
|
|
)
|
2019-07-28 12:44:13 +02:00
|
|
|
|
|
|
|
return Scenario.init(config)
|