1
0
mirror of https://github.com/ComfyFactory/ComfyFactorio.git synced 2025-02-03 13:12:11 +02:00
danielmartin0 40ba94ba53 v1.0.2.0
2021-10-31 20:34:18 +00:00

92 lines
1.7 KiB
Lua

local Common = require 'maps.pirates.common'
local Utils = require 'maps.pirates.utils_local'
local Math = require 'maps.pirates.math'
local Public = {}
Public.display_names = {'Horseshoe Keys'}
Public.terraingen_frame_width = 896
Public.terraingen_frame_height = 896
Public.static_params_default = {
starting_time_of_day = 0,
daynightcycletype = 1,
default_decoratives = true,
base_starting_treasure = 1000,
base_starting_rock_material = 800,
base_starting_wood = 1200,
base_starting_treasure_maps = 0,
}
function Public.base_ores()
return {
['copper-ore'] = 2.8,
['iron-ore'] = 3.1,
['coal'] = 2.4,
['stone'] = 1.0,
}
end
local rscale1 = 240
local rscale2 = 210
local hscale = 0.1
Public.noiseparams = {
radius1 = {
type = 'simplex_2d',
normalised = false,
params = {
{wavelength = 0, amplitude = rscale1 * 1},
{wavelength = 1.6, amplitude = rscale1 * 0.2},
},
},
radius2 = {
type = 'simplex_2d',
normalised = false,
params = {
{wavelength = 0, amplitude = rscale2 * 1},
{wavelength = 1.6, amplitude = rscale2 * 0.2},
},
},
height_background = {
type = 'island1',
normalised = false,
params = {
-- {upperscale = 1000, amplitude = hscale * 200},
{upperscale = 1600, amplitude = hscale * 1},
{upperscale = 80, amplitude = hscale * 0.1},
},
},
forest = {
type = 'forest1',
normalised = true,
params = {
{upperscale = 90, amplitude = 1},
-- {upperscale = 0, amplitude = 0.15},
},
},
rock = {
type = 'forest1',
normalised = true,
params = {
{upperscale = 110, amplitude = 1, seedfactor = 2},
},
},
mood = {
type = 'simplex_2d',
normalised = true,
params = {
{wavelength = 250, amplitude = 70},
{wavelength = 50, amplitude = 20},
},
},
}
return Public