Unnamed Minor Update
This commit is contained in:
parent
6eb46569c2
commit
bcd173ce81
@ -1,5 +1,9 @@
|
||||
# Changelog
|
||||
|
||||
# [Aug 23rd 2024] Unnamed Minor Update
|
||||
|
||||
- Added Vyn Forest (WIP)
|
||||
|
||||
# [Aug 8th 2024] Unnamed Minor Update
|
||||
|
||||
- New dandelion texture
|
||||
|
@ -39,3 +39,4 @@ PyuTestCore.make_leaves("pyutest_core:cherry", "Cherry", {"pyutest-cherry-leaves
|
||||
PyuTestCore.make_leaves("pyutest_core:dark", "Dark", {"pyutest-dark-leaves.png"})
|
||||
PyuTestCore.make_leaves("pyutest_core:aspen", "Aspen", {"pyutest-aspen-leaves.png"})
|
||||
PyuTestCore.make_leaves("pyutest_core:red_aspen", "Red Aspen", {"pyutest-red-aspen-leaves.png"})
|
||||
PyuTestCore.make_leaves("pyutest_core:vyn", "Vyn", {"pyutest-vyn-leaves.png"})
|
||||
|
@ -110,13 +110,13 @@ PyuTestCore.register_biome = function(name, type, opts)
|
||||
node_filler = nopts["node_riverbed"],
|
||||
depth_filler = 3,
|
||||
depth_riverbed = 2,
|
||||
|
||||
|
||||
node_water = nopts["node_water"],
|
||||
node_river_water = nopts["node_river_water"],
|
||||
|
||||
|
||||
heat_point = nopts["heat_point"],
|
||||
humidity_point = nopts["humidity_point"],
|
||||
|
||||
|
||||
y_max = 0,
|
||||
y_min = PyuTestCore_OceanMin
|
||||
}, {
|
||||
@ -126,22 +126,22 @@ PyuTestCore.register_biome = function(name, type, opts)
|
||||
|
||||
minetest.register_biome(PyuTestCore.util.tableconcat({
|
||||
name = name.."_deep_ocean",
|
||||
|
||||
|
||||
node_top = nopts["node_riverbed"],
|
||||
depth_top = 2,
|
||||
node_filler = nopts["node_riverbed"],
|
||||
depth_filler = 3,
|
||||
depth_riverbed = 2,
|
||||
|
||||
|
||||
node_water = nopts["node_water"],
|
||||
node_river_water = nopts["node_river_water"],
|
||||
|
||||
|
||||
heat_point = nopts["heat_point"],
|
||||
humidity_point = nopts["humidity_point"],
|
||||
|
||||
|
||||
y_max = PyuTestCore_DeepOceanMax,
|
||||
y_min = PyuTestCore_DeepOceanMin,
|
||||
|
||||
|
||||
vertical_blend = 5
|
||||
}, {
|
||||
_pyutest_biome_type = PyuTestCore.BIOME_TYPES.OCEAN,
|
||||
@ -163,7 +163,7 @@ end
|
||||
PyuTestCore.register_biome("grassland", PyuTestCore.BIOME_TYPES.NORMAL, {
|
||||
node_top = "pyutest_core:grass_block",
|
||||
node_filler = "pyutest_core:dirt_block",
|
||||
|
||||
|
||||
y_max = PyuTestCore_BiomeTops.grassland,
|
||||
y_min = PyuTestCore_SurfaceBottom,
|
||||
|
||||
@ -439,3 +439,14 @@ PyuTestCore.register_biome("large_mushroom_forest", PyuTestCore.BIOME_TYPES.NORM
|
||||
heat_point = 53,
|
||||
humidity_point = 98
|
||||
})
|
||||
|
||||
PyuTestCore.register_biome("vyn_tree", PyuTestCore.BIOME_TYPES.NORMAL, {
|
||||
node_top = "pyutest_core:dark_grass_block",
|
||||
node_filler = "pyutest_core:dirt_block",
|
||||
|
||||
y_max = PyuTestCore_BiomeTops.mushroom_fields,
|
||||
y_min = PyuTestCore_SurfaceBottom,
|
||||
|
||||
heat_point = 53,
|
||||
humidity_point = 88
|
||||
})
|
||||
|
BIN
mods/pyutest/pyutest_mapgen/schematics/VynTree.mts
Normal file
BIN
mods/pyutest/pyutest_mapgen/schematics/VynTree.mts
Normal file
Binary file not shown.
@ -360,3 +360,16 @@ minetest.register_decoration({
|
||||
place_offset_y = 1,
|
||||
force_placement = true
|
||||
})
|
||||
|
||||
minetest.register_decoration({
|
||||
deco_type = "schematic",
|
||||
place_on = {"group:grass"},
|
||||
sidelen = 16,
|
||||
fill_ratio = 0.003,
|
||||
biomes = {"vyn_forest"},
|
||||
schematic = PyuTestCore.get_schem_path("VynTree"),
|
||||
rotation = "random",
|
||||
flags = "place_center_x, place_center_z",
|
||||
place_offset_y = 1,
|
||||
force_placement = true
|
||||
})
|
||||
|
BIN
textures/pyutest-vyn-leaves.png
Normal file
BIN
textures/pyutest-vyn-leaves.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 276 B |
Loading…
x
Reference in New Issue
Block a user