Module:BiomeData

From Eco - English Wiki
Revision as of 21:18, 19 August 2025 by StalEF (talk | contribs)

Warning about use

To prevent multiple call of data array, you must use the function: local BiomeData = mw.loadData("Module:BiomeData")


-- Eco Version : 0.12.0.0

return {
    biomes = {
        ['Coast'] = {
                    ['ID'] = 'Coast',
                    ['Name'] =  {
                            ['English'] = "Coast Biome",
                            ['Russian'] = "Coast Biome",
                            ['German'] = "Coast Biome",
                            ['French'] = "Coast Biome",
                            },
                    ['Color'] = 'LightGoldenrodYellow',
                    ['CanSpawnLake'] = nil,
                    ['IsOcean'] = nil,
                    ['PrevailingRockType'] = 'LimestoneBlock',
                    ['ElevationRangeMin'] = '0,02',
                    ['ElevationRangeMax'] = '0,1',
                    ['TemperatureRangeMin'] = '-10',
                    ['TemperatureRangeMax'] = '30',
                    ['MoistureRangeMin'] = '0',
                    ['MoistureRangeMax'] = '100',
                    ['UpperHeight'] = '0,08400001',
        },
        ['Cold Coast'] = {
                    ['ID'] = 'ColdCoast',
                    ['Name'] =  {
                            ['English'] = "Cold Coast Biome",
                            ['Russian'] = "Cold Coast Biome",
                            ['German'] = "Cold Coast Biome",
                            ['French'] = "Cold Coast Biome",
                            },
                    ['Color'] = 'LightCyan',
                    ['CanSpawnLake'] = nil,
                    ['IsOcean'] = nil,
                    ['PrevailingRockType'] = 'LimestoneBlock',
                    ['ElevationRangeMin'] = '0,05',
                    ['ElevationRangeMax'] = '0,1',
                    ['TemperatureRangeMin'] = '-10',
                    ['TemperatureRangeMax'] = '30',
                    ['MoistureRangeMin'] = '0',
                    ['MoistureRangeMax'] = '100',
                    ['UpperHeight'] = '0,09',
        },
        ['Cold Forest'] = {
                    ['ID'] = 'ColdForest',
                    ['Name'] =  {
                            ['English'] = "Cold Forest Biome",
                            ['Russian'] = "Холодный Лес",
                            ['German'] = "Kalter Wald Biom",
                            ['French'] = "Biome forestier froid",
                            },
                    ['Color'] = 'ForestGreen',
                    ['CanSpawnLake'] = nil,
                    ['IsOcean'] = nil,
                    ['PrevailingRockType'] = 'GraniteBlock',
                    ['ElevationRangeMin'] = '0,1',
                    ['ElevationRangeMax'] = '0,7',
                    ['TemperatureRangeMin'] = '-2',
                    ['TemperatureRangeMax'] = '10',
                    ['MoistureRangeMin'] = '50',
                    ['MoistureRangeMax'] = '60',
                    ['UpperHeight'] = '0,58',
        },
        ['Deep Ocean'] = {
                    ['ID'] = 'DeepOcean',
                    ['Name'] =  {
                            ['English'] = "Deep Ocean Biome",
                            ['Russian'] = "Глубокий океан",
                            ['German'] = "Tiefsee-Biom",
                            ['French'] = "Biome abyssal",
                            },
                    ['Color'] = 'SteelBlue',
                    ['CanSpawnLake'] = nil,
                    ['IsOcean'] = nil,
                    ['PrevailingRockType'] = 'BasaltBlock',
                    ['ElevationRangeMin'] = '-1',
                    ['ElevationRangeMax'] = '-0,4',
                    ['TemperatureRangeMin'] = '-10',
                    ['TemperatureRangeMax'] = '6',
                    ['MoistureRangeMin'] = '0',
                    ['MoistureRangeMax'] = '100',
                    ['UpperHeight'] = '-0,52',
        },
        ['Desert'] = {
                    ['ID'] = 'Desert',
                    ['Name'] =  {
                            ['English'] = "Desert Biome",
                            ['Russian'] = "Пустыня",
                            ['German'] = "Wüstenbiom",
                            ['French'] = "Biome désertique",
                            },
                    ['Color'] = 'SandyBrown',
                    ['CanSpawnLake'] = nil,
                    ['IsOcean'] = nil,
                    ['PrevailingRockType'] = 'SandstoneBlock',
                    ['ElevationRangeMin'] = '0,02',
                    ['ElevationRangeMax'] = '0,2',
                    ['TemperatureRangeMin'] = '18',
                    ['TemperatureRangeMax'] = '30',
                    ['MoistureRangeMin'] = '0',
                    ['MoistureRangeMax'] = '30',
                    ['UpperHeight'] = '0,164',
        },
        ['Grassland'] = {
                    ['ID'] = 'Grassland',
                    ['Name'] =  {
                            ['English'] = "Grassland Biome",
                            ['Russian'] = "Луг",
                            ['German'] = "Grasland Biom",
                            ['French'] = "Biome herbeux",
                            },
                    ['Color'] = 'LightGreen',
                    ['CanSpawnLake'] = nil,
                    ['IsOcean'] = nil,
                    ['PrevailingRockType'] = 'LimestoneBlock',
                    ['ElevationRangeMin'] = '0,02',
                    ['ElevationRangeMax'] = '0,4',
                    ['TemperatureRangeMin'] = '6',
                    ['TemperatureRangeMax'] = '22',
                    ['MoistureRangeMin'] = '30',
                    ['MoistureRangeMax'] = '50',
                    ['UpperHeight'] = '0,324',
        },
        ['High Desert'] = {
                    ['ID'] = 'HighDesert',
                    ['Name'] =  {
                            ['English'] = "High Desert Biome",
                            ['Russian'] = "High Desert Biome",
                            ['German'] = "High Desert Biome",
                            ['French'] = "High Desert Biome",
                            },
                    ['Color'] = 'SandyBrown',
                    ['CanSpawnLake'] = nil,
                    ['IsOcean'] = nil,
                    ['PrevailingRockType'] = 'SandstoneBlock',
                    ['ElevationRangeMin'] = '0,225',
                    ['ElevationRangeMax'] = '0,3',
                    ['TemperatureRangeMin'] = '18',
                    ['TemperatureRangeMax'] = '30',
                    ['MoistureRangeMin'] = '0',
                    ['MoistureRangeMax'] = '30',
                    ['UpperHeight'] = '0,285',
        },
        ['Ice'] = {
                    ['ID'] = 'Ice',
                    ['Name'] =  {
                            ['English'] = "Ice Biome",
                            ['Russian'] = "Ледяной биом",
                            ['German'] = "Eis Biom",
                            ['French'] = "Biome enneigé",
                            },
                    ['Color'] = 'White',
                    ['CanSpawnLake'] = nil,
                    ['IsOcean'] = nil,
                    ['PrevailingRockType'] = 'GraniteBlock',
                    ['ElevationRangeMin'] = '0,6',
                    ['ElevationRangeMax'] = '1',
                    ['TemperatureRangeMin'] = '-10',
                    ['TemperatureRangeMax'] = '-6',
                    ['MoistureRangeMin'] = '0',
                    ['MoistureRangeMax'] = '60',
                    ['UpperHeight'] = '0,92',
        },
        ['Ocean'] = {
                    ['ID'] = 'Ocean',
                    ['Name'] =  {
                            ['English'] = "Ocean Biome",
                            ['Russian'] = "Океан",
                            ['German'] = "Ozeanbiom",
                            ['French'] = "Biome océanique",
                            },
                    ['Color'] = 'LightSkyBlue',
                    ['CanSpawnLake'] = nil,
                    ['IsOcean'] = nil,
                    ['PrevailingRockType'] = 'BasaltBlock',
                    ['ElevationRangeMin'] = '-0,3',
                    ['ElevationRangeMax'] = '-0,05',
                    ['TemperatureRangeMin'] = '6',
                    ['TemperatureRangeMax'] = '30',
                    ['MoistureRangeMin'] = '0',
                    ['MoistureRangeMax'] = '100',
                    ['UpperHeight'] = '-0,10000001',
        },
        ['Rain Forest'] = {
                    ['ID'] = 'RainForest',
                    ['Name'] =  {
                            ['English'] = "Rain Forest Biome",
                            ['Russian'] = "Rain Forest Biome",
                            ['German'] = "Rain Forest Biome",
                            ['French'] = "Rain Forest Biome",
                            },
                    ['Color'] = 'LightSeaGreen',
                    ['CanSpawnLake'] = nil,
                    ['IsOcean'] = nil,
                    ['PrevailingRockType'] = 'ShaleBlock',
                    ['ElevationRangeMin'] = '0,1',
                    ['ElevationRangeMax'] = '0,5',
                    ['TemperatureRangeMin'] = '14',
                    ['TemperatureRangeMax'] = '22',
                    ['MoistureRangeMin'] = '70',
                    ['MoistureRangeMax'] = '100',
                    ['UpperHeight'] = '0,42000002',
        },
        ['Steppe'] = {
                    ['ID'] = 'Steppe',
                    ['Name'] =  {
                            ['English'] = "Steppe Biome",
                            ['Russian'] = "Steppe Biome",
                            ['German'] = "Steppe Biome",
                            ['French'] = "Steppe Biome",
                            },
                    ['Color'] = 'LightGreen',
                    ['CanSpawnLake'] = nil,
                    ['IsOcean'] = nil,
                    ['PrevailingRockType'] = 'LimestoneBlock',
                    ['ElevationRangeMin'] = '0,325',
                    ['ElevationRangeMax'] = '0,4',
                    ['TemperatureRangeMin'] = '6',
                    ['TemperatureRangeMax'] = '22',
                    ['MoistureRangeMin'] = '30',
                    ['MoistureRangeMax'] = '50',
                    ['UpperHeight'] = '0,385',
        },
        ['Taiga'] = {
                    ['ID'] = 'Taiga',
                    ['Name'] =  {
                            ['English'] = "Taiga Biome",
                            ['Russian'] = "Тайга",
                            ['German'] = "Taiga Biom",
                            ['French'] = "Biome de la forêt boréale",
                            },
                    ['Color'] = 'OliveDrab',
                    ['CanSpawnLake'] = nil,
                    ['IsOcean'] = nil,
                    ['PrevailingRockType'] = 'GraniteBlock',
                    ['ElevationRangeMin'] = '0,3',
                    ['ElevationRangeMax'] = '1',
                    ['TemperatureRangeMin'] = '-2',
                    ['TemperatureRangeMax'] = '2',
                    ['MoistureRangeMin'] = '20',
                    ['MoistureRangeMax'] = '50',
                    ['UpperHeight'] = '0,86',
        },
        ['Tundra'] = {
                    ['ID'] = 'Tundra',
                    ['Name'] =  {
                            ['English'] = "Tundra Biome",
                            ['Russian'] = "Тундра",
                            ['German'] = "Tundrabiom",
                            ['French'] = "Biome de toundra",
                            },
                    ['Color'] = 'DarkKhaki',
                    ['CanSpawnLake'] = nil,
                    ['IsOcean'] = nil,
                    ['PrevailingRockType'] = 'GraniteBlock',
                    ['ElevationRangeMin'] = '0,4',
                    ['ElevationRangeMax'] = '1',
                    ['TemperatureRangeMin'] = '-6',
                    ['TemperatureRangeMax'] = '-2',
                    ['MoistureRangeMin'] = '0',
                    ['MoistureRangeMax'] = '60',
                    ['UpperHeight'] = '0,88',
        },
        ['Warm Coast'] = {
                    ['ID'] = 'WarmCoast',
                    ['Name'] =  {
                            ['English'] = "Warm Coast Biome",
                            ['Russian'] = "Warm Coast Biome",
                            ['German'] = "Warm Coast Biome",
                            ['French'] = "Warm Coast Biome",
                            },
                    ['Color'] = 'LightGoldenrodYellow',
                    ['CanSpawnLake'] = nil,
                    ['IsOcean'] = nil,
                    ['PrevailingRockType'] = 'SandstoneBlock',
                    ['ElevationRangeMin'] = '0,05',
                    ['ElevationRangeMax'] = '0,1',
                    ['TemperatureRangeMin'] = '-10',
                    ['TemperatureRangeMax'] = '30',
                    ['MoistureRangeMin'] = '0',
                    ['MoistureRangeMax'] = '100',
                    ['UpperHeight'] = '0,09',
        },
        ['Warm Forest'] = {
                    ['ID'] = 'WarmForest',
                    ['Name'] =  {
                            ['English'] = "Warm Forest Biome",
                            ['Russian'] = "Тёплый лес",
                            ['German'] = "Warmer Wald Biom",
                            ['French'] = "Biome tempéré",
                            },
                    ['Color'] = 'DarkGoldenrod',
                    ['CanSpawnLake'] = nil,
                    ['IsOcean'] = nil,
                    ['PrevailingRockType'] = 'GraniteBlock',
                    ['ElevationRangeMin'] = '0,1',
                    ['ElevationRangeMax'] = '0,5',
                    ['TemperatureRangeMin'] = '10',
                    ['TemperatureRangeMax'] = '22',
                    ['MoistureRangeMin'] = '50',
                    ['MoistureRangeMax'] = '60',
                    ['UpperHeight'] = '0,42000002',
        },
        ['Wetland'] = {
                    ['ID'] = 'Wetland',
                    ['Name'] =  {
                            ['English'] = "Wetland Biome",
                            ['Russian'] = "Болото",
                            ['German'] = "Sumpf Biom",
                            ['French'] = "Biome marécageux",
                            },
                    ['Color'] = 'DarkGreen',
                    ['CanSpawnLake'] = nil,
                    ['IsOcean'] = nil,
                    ['PrevailingRockType'] = 'ShaleBlock',
                    ['ElevationRangeMin'] = '0,02',
                    ['ElevationRangeMax'] = '0,3',
                    ['TemperatureRangeMin'] = '6',
                    ['TemperatureRangeMax'] = '14',
                    ['MoistureRangeMin'] = '60',
                    ['MoistureRangeMax'] = '80',
                    ['UpperHeight'] = '0,244',
        },
    },
}