1
0
mirror of https://github.com/Refactorio/RedMew.git synced 2024-12-14 10:13:13 +02:00
RedMew/map_gen/maps/crash_site/presets/normal.lua

22 lines
474 B
Lua
Raw Normal View History

local MGSP = require 'resources.map_gen_settings'
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'
return Scenario.init(config)