Unnamed Minor Update

This commit is contained in:
IamPyu
2024-07-26 09:17:14 -06:00
parent b292ae8809
commit be6d9da544
3 changed files with 24 additions and 6 deletions

View File

@@ -164,7 +164,7 @@ PyuTestCore.register_biome("grassland", PyuTestCore.BIOME_TYPES.NORMAL, {
y_min = PyuTestCore_SurfaceBottom,
heat_point = 53,
humidity_point = 78,
humidity_point = 50,
_pyutest_biome_flowering = true
})
@@ -223,7 +223,7 @@ PyuTestCore.register_biome("snowy_mountains", PyuTestCore.BIOME_TYPES.COLD, {
y_min = PyuTestCore_BiomeTops.frozen_plains,
heat_point = 6,
humidity_point = 56
humidity_point = 45
})
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 = 53
humidity_point = 40
})
PyuTestCore.register_biome("mushroom_fields", PyuTestCore.BIOME_TYPES.NORMAL, {
@@ -264,7 +264,7 @@ PyuTestCore.register_biome("ice_spikes", PyuTestCore.BIOME_TYPES.COLD, {
depth_water_top = 5,
heat_point = 9,
humidity_point = 57
humidity_point = 47
})
PyuTestCore.register_biome("meadow", PyuTestCore.BIOME_TYPES.NORMAL, {
@@ -275,7 +275,7 @@ PyuTestCore.register_biome("meadow", PyuTestCore.BIOME_TYPES.NORMAL, {
y_max = PyuTestCore_BiomeTops.mountains,
y_min = PyuTestCore_SurfaceBottom,
heat_point = 41,
heat_point = 52,
humidity_point = 83,
_pyutest_biome_flowering = true,
@@ -306,7 +306,7 @@ PyuTestCore.register_biome("snowy_forest", PyuTestCore.BIOME_TYPES.COLD, {
depth_water_top = 5,
heat_point = 8,
humidity_point = 49
humidity_point = 43
})
PyuTestCore.register_biome("savanna", PyuTestCore.BIOME_TYPES.WARM, {

View File

@@ -94,6 +94,19 @@ 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.00045,
biomes = {"grassland"},
y_max = PyuTestCore_WorldTop,
y_min = 1,
schematic = PyuTestCore.get_schem_path("tree"),
rotation = "random",
flags = "place_center_x, place_center_z",
})
minetest.register_decoration({
deco_type = "schematic",
place_on = {"group:grass"},