1
0
mirror of https://github.com/Refactorio/RedMew.git synced 2024-12-16 10:19:27 +02:00
RedMew/map_gen/maps/crash_site/presets/desert.lua
2019-07-28 11:44:21 +01:00

28 lines
701 B
Lua

local MGSP = require 'resources.map_gen_settings'
local config = {
scenario_name = 'crashsite-desert',
map_gen_settings = {
MGSP.sand_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,
{
property_expression_names = {
['control-setting:moisture:bias'] = '-0.500000',
['control-setting:moisture:frequency:multiplier'] = '6.000000'
}
}
}
}
local Scenario = require 'map_gen.maps.crash_site.scenario'
return Scenario.init(config)