2024-01-10 22:16:52 -06:00
|
|
|
--[[
|
|
|
|
Everness. Never ending discovery in Everness mapgen.
|
|
|
|
Copyright (C) 2024 SaKeL
|
|
|
|
|
|
|
|
This library is free software; you can redistribute it and/or
|
|
|
|
modify it under the terms of the GNU Lesser General Public
|
|
|
|
License as published by the Free Software Foundation; either
|
|
|
|
version 2.1 of the License, or (at your option) any later version.
|
|
|
|
|
|
|
|
This library is distributed in the hope that it will be useful,
|
|
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
|
|
Lesser General Public License for more details.
|
|
|
|
|
|
|
|
--]]
|
|
|
|
|
|
|
|
--
|
|
|
|
-- Register biomes
|
|
|
|
--
|
|
|
|
|
|
|
|
local y_max = Everness.settings.biomes.everness_mineral_waters_under.y_max
|
|
|
|
local y_min = Everness.settings.biomes.everness_mineral_waters_under.y_min
|
|
|
|
|
|
|
|
-- Mineral Waters
|
|
|
|
|
2024-01-25 14:31:55 -06:00
|
|
|
Everness:register_biome({
|
|
|
|
name = 'everness:mineral_waters_under',
|
2024-01-19 14:47:12 -06:00
|
|
|
node_cave_liquid = 'air',
|
2024-01-10 22:16:52 -06:00
|
|
|
node_dungeon = 'everness:mineral_stone_brick',
|
|
|
|
node_dungeon_alt = 'everness:mineral_stone_brick_with_growth',
|
2024-01-19 14:47:12 -06:00
|
|
|
node_dungeon_stair = 'stairs:stair_mineral_stone_brick',
|
2024-01-10 22:16:52 -06:00
|
|
|
y_max = y_max,
|
|
|
|
y_min = y_min,
|
2024-01-19 14:47:12 -06:00
|
|
|
vertical_blend = 16,
|
2024-01-10 22:16:52 -06:00
|
|
|
heat_point = 78,
|
|
|
|
humidity_point = 58,
|
|
|
|
})
|
|
|
|
|
|
|
|
--
|
|
|
|
-- Ores
|
|
|
|
--
|
|
|
|
|
|
|
|
-- Blob ore.
|
|
|
|
-- These before scatter ores to avoid other ores in blobs.
|
|
|
|
|
2024-01-25 14:31:55 -06:00
|
|
|
Everness:register_ore({
|
2024-01-10 22:16:52 -06:00
|
|
|
ore_type = 'blob',
|
|
|
|
ore = 'everness:mineral_stone',
|
2024-01-19 14:47:12 -06:00
|
|
|
wherein = { 'mapgen_stone' },
|
2024-01-10 22:16:52 -06:00
|
|
|
clust_scarcity = 16 * 16 * 16,
|
|
|
|
clust_size = 5,
|
|
|
|
y_max = y_max,
|
|
|
|
y_min = y_min,
|
|
|
|
noise_threshold = 0.0,
|
|
|
|
noise_params = {
|
|
|
|
offset = 0.5,
|
|
|
|
scale = 0.2,
|
|
|
|
spread = { x = 5, y = 5, z = 5 },
|
|
|
|
seed = 766,
|
|
|
|
octaves = 1,
|
|
|
|
persist = 0.0
|
2024-01-25 19:44:27 -06:00
|
|
|
},
|
|
|
|
biomes = { 'everness:mineral_waters_under' }
|
2024-01-10 22:16:52 -06:00
|
|
|
})
|
|
|
|
|
|
|
|
--
|
|
|
|
-- Register decorations
|
|
|
|
--
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
--
|
|
|
|
-- On Generated
|
|
|
|
--
|