Unnamed Minor Update
This commit is contained in:
parent
204a9f855b
commit
b5678b6e41
@ -1,5 +1,10 @@
|
||||
# Changelog
|
||||
|
||||
# [Aug 3rd 2024] Unnamed Minor Update
|
||||
|
||||
- Adjust biomes a bit
|
||||
- New ice spike structure
|
||||
|
||||
# [Aug 3rd 2024] Unnamed Update
|
||||
|
||||
- Added new node/block types
|
||||
|
@ -181,15 +181,15 @@ PyuTestCore.register_biome("forest", PyuTestCore.BIOME_TYPES.NORMAL, {
|
||||
_pyutest_biome_flowering = true
|
||||
})
|
||||
|
||||
PyuTestCore.register_biome("stony_mountains", PyuTestCore.BIOME_TYPES.CHILLY, {
|
||||
PyuTestCore.register_biome("stony_mountains", PyuTestCore.BIOME_TYPES.WARM, {
|
||||
node_top = "pyutest_core:stone_block",
|
||||
node_filler = "pyutest_core:stone_block",
|
||||
|
||||
y_max = PyuTestCore_BiomeTops.mountains,
|
||||
y_min = PyuTestCore_BiomeTops.grassland,
|
||||
|
||||
heat_point = 45,
|
||||
humidity_point = 34
|
||||
heat_point = 65,
|
||||
humidity_point = 8
|
||||
})
|
||||
|
||||
PyuTestCore.register_biome("desert", PyuTestCore.BIOME_TYPES.DESERT, {
|
||||
@ -223,7 +223,7 @@ PyuTestCore.register_biome("snowy_mountains", PyuTestCore.BIOME_TYPES.COLD, {
|
||||
y_min = PyuTestCore_BiomeTops.frozen_plains,
|
||||
|
||||
heat_point = 6,
|
||||
humidity_point = 45
|
||||
humidity_point = 93
|
||||
})
|
||||
|
||||
PyuTestCore.register_biome("frozen_plains", PyuTestCore.BIOME_TYPES.COLD, {
|
||||
@ -239,7 +239,7 @@ PyuTestCore.register_biome("frozen_plains", PyuTestCore.BIOME_TYPES.COLD, {
|
||||
depth_water_top = 5,
|
||||
|
||||
heat_point = 9,
|
||||
humidity_point = 40
|
||||
humidity_point = 90
|
||||
})
|
||||
|
||||
PyuTestCore.register_biome("mushroom_fields", PyuTestCore.BIOME_TYPES.NORMAL, {
|
||||
@ -249,7 +249,7 @@ PyuTestCore.register_biome("mushroom_fields", PyuTestCore.BIOME_TYPES.NORMAL, {
|
||||
y_max = PyuTestCore_BiomeTops.mushroom_fields,
|
||||
y_min = PyuTestCore_SurfaceBottom,
|
||||
|
||||
heat_point = 42,
|
||||
heat_point = 53,
|
||||
humidity_point = 94
|
||||
})
|
||||
|
||||
@ -264,7 +264,7 @@ PyuTestCore.register_biome("ice_spikes", PyuTestCore.BIOME_TYPES.COLD, {
|
||||
depth_water_top = 5,
|
||||
|
||||
heat_point = 9,
|
||||
humidity_point = 47
|
||||
humidity_point = 86
|
||||
})
|
||||
|
||||
PyuTestCore.register_biome("meadow", PyuTestCore.BIOME_TYPES.NORMAL, {
|
||||
@ -306,7 +306,7 @@ PyuTestCore.register_biome("snowy_forest", PyuTestCore.BIOME_TYPES.COLD, {
|
||||
depth_water_top = 5,
|
||||
|
||||
heat_point = 8,
|
||||
humidity_point = 43
|
||||
humidity_point = 89
|
||||
})
|
||||
|
||||
PyuTestCore.register_biome("savanna", PyuTestCore.BIOME_TYPES.WARM, {
|
||||
@ -328,7 +328,7 @@ PyuTestCore.register_biome("taiga", PyuTestCore.BIOME_TYPES.CHILLY, {
|
||||
y_min = PyuTestCore_SurfaceBottom,
|
||||
|
||||
heat_point = 28,
|
||||
humidity_point = 53,
|
||||
humidity_point = 67,
|
||||
|
||||
_pyutest_biome_flowering = true
|
||||
})
|
||||
@ -367,7 +367,7 @@ PyuTestCore.register_biome("swamp", PyuTestCore.BIOME_TYPES.WETLAND, {
|
||||
y_max = PyuTestCore_BiomeTops.swamp,
|
||||
y_min = PyuTestCore_SurfaceBottom,
|
||||
|
||||
heat_point = 30,
|
||||
heat_point = 52,
|
||||
humidity_point = 88,
|
||||
})
|
||||
|
||||
@ -393,7 +393,7 @@ PyuTestCore.register_biome("aspen_forest", PyuTestCore.BIOME_TYPES.CHILLY, {
|
||||
y_min = PyuTestCore_SurfaceBottom,
|
||||
|
||||
heat_point = 25,
|
||||
humidity_point = 52,
|
||||
humidity_point = 63,
|
||||
|
||||
_pyutest_biome_flowering = true
|
||||
})
|
||||
@ -406,7 +406,7 @@ PyuTestCore.register_biome("redwood_forest", PyuTestCore.BIOME_TYPES.CHILLY, {
|
||||
y_min = PyuTestCore_SurfaceBottom,
|
||||
|
||||
heat_point = 28,
|
||||
humidity_point = 54,
|
||||
humidity_point = 67,
|
||||
|
||||
_pyutest_biome_flowering = true
|
||||
})
|
||||
@ -418,8 +418,8 @@ PyuTestCore.register_biome("jungle", PyuTestCore.BIOME_TYPES.WARM, {
|
||||
y_max = PyuTestCore_BiomeTops.forest,
|
||||
y_min = PyuTestCore_SurfaceBottom,
|
||||
|
||||
heat_point = 48,
|
||||
humidity_point = 97,
|
||||
heat_point = 52,
|
||||
humidity_point = 103,
|
||||
|
||||
_pyutest_biome_flowering = true,
|
||||
_pyutest_biome_flowering_extra = true
|
||||
@ -432,6 +432,6 @@ PyuTestCore.register_biome("large_mushroom_forest", PyuTestCore.BIOME_TYPES.NORM
|
||||
y_max = PyuTestCore_BiomeTops.mushroom_fields,
|
||||
y_min = PyuTestCore_SurfaceBottom,
|
||||
|
||||
heat_point = 43,
|
||||
heat_point = 53,
|
||||
humidity_point = 98
|
||||
})
|
||||
|
Binary file not shown.
@ -38,18 +38,12 @@ PyuTestMapgen.register_structure("ice_spike", "IceSpike", {
|
||||
fill_ratio = 0.0008,
|
||||
place_on = {
|
||||
"pyutest_core:ice_block",
|
||||
"pyutest_core:stone_block"
|
||||
},
|
||||
biomes = {
|
||||
"ice_spikes",
|
||||
"ice_spikes_ocean",
|
||||
"ice_spikes_cave"
|
||||
},
|
||||
y_max = PyuTestCore_BiomeTops.ice_spikes,
|
||||
y_min = PyuTestCore_WorldBottom,
|
||||
-- place_offset_y = -1,
|
||||
spawn_by = {"air"},
|
||||
num_spawn_by = 2
|
||||
})
|
||||
|
||||
PyuTestMapgen.register_structure("obsidian_mound", "ObsidianMound", {
|
||||
|
@ -147,19 +147,6 @@ minetest.register_decoration({
|
||||
flags = "place_center_x, place_center_z"
|
||||
})
|
||||
|
||||
minetest.register_decoration({
|
||||
deco_type = "schematic",
|
||||
place_on = {"group:grass"},
|
||||
sidelen = 16,
|
||||
fill_ratio = 0.005,
|
||||
biomes = {"old_growth_forest"},
|
||||
y_max = PyuTestCore_WorldTop,
|
||||
y_min = 1,
|
||||
schematic = PyuTestCore.get_schem_path("Mushroom"),
|
||||
rotation = "random",
|
||||
flags = "place_center_x, place_center_z"
|
||||
})
|
||||
|
||||
minetest.register_decoration({
|
||||
deco_type = "schematic",
|
||||
place_on = {"group:grass"},
|
||||
|
Loading…
x
Reference in New Issue
Block a user