minor update

This commit is contained in:
IamPyu 2024-06-23 16:14:43 -06:00
parent b5b748d8fd
commit 75f12445e0
7 changed files with 51 additions and 8 deletions

View File

@ -1,5 +1,13 @@
# Changelog
## [Some Day I Don't Remember] Unnamed Minor Update
- Added Ice Spikes Biome
- Removed Mushrooms from Forests
- Adjusted Sprinting Speed
- Bring back Unified Inventory
- Adjusted Biome Tempatures
## [Jun 17th - 18th 2024] Major Update: Electricity Update Pt.1
- Added Copper

View File

@ -1 +1,4 @@
#unified_inventory_lite = true
unified_inventory_lite = false
unified_inventory_bags = false
unified_inventory_waypoints = false

View File

@ -14,7 +14,8 @@ PyuTestCore_BiomeTops = {
mountains = 300,
mushroom_fields = 40,
hellbounds = 70,
oillands = 45
oillands = 45,
ice_spikes = 250
}
minetest.register_biome({
@ -130,7 +131,7 @@ minetest.register_biome({
y_min = PyuTestCore_WorldBottom,
heat_point = 19,
humidity_point = 23
humidity_point = 32
})
minetest.register_biome({
@ -147,7 +148,7 @@ minetest.register_biome({
y_max = PyuTestCore_BiomeTops.frozen_plains,
y_min = PyuTestCore_WorldBottom,
heat_point = 21,
heat_point = 9,
humidity_point = 9
})
@ -159,7 +160,7 @@ minetest.register_biome({
node_filler = "pyutest_core:dirt_block",
depth_filler = 3,
y_max = PyuTestCore_BiomeTops.frozen_plains,
y_max = PyuTestCore_BiomeTops.mushroom_fields,
y_min = PyuTestCore_WorldBottom,
heat_point = 34,
@ -210,6 +211,23 @@ minetest.register_biome({
humidity_point = 18
})
minetest.register_biome({
name = "ice_spikes",
node_top = "pyutest_core:ice_block",
depth_top = 1,
node_filler = "pyutest_core:ice_block",
depth_filler = 3,
node_water_top = "pyutest_core:ice_block",
depth_water_top = 10,
y_max = PyuTestCore_BiomeTops.ice_spikes,
y_min = PyuTestCore_WorldBottom,
heat_point = 14,
humidity_point = 28
})
PyuTestCore.BIOMES = {}
for k, _ in pairs(minetest.registered_biomes) do

View File

@ -18,7 +18,7 @@ minetest.register_globalstep(function(dtime)
for p=1, #players do
local ctrl = players[p]:get_player_control()
if ctrl.aux1 then
set_player_speed(players[p], 1.65)
set_player_speed(players[p], 1.85)
else
set_player_speed(players[p], 1)
end

Binary file not shown.

View File

@ -75,3 +75,17 @@ minetest.register_decoration({
"pyutest_core:lighting_lootbox",
}
})
minetest.register_decoration({
deco_type = "schematic",
sidelen = 16,
fill_ratio = 0.0004,
schematic = PyuTestCore.get_schem_path("icespike"),
place_on = {"pyutest_core:ice_block"},
biomes = {
"ice_spikes",
},
y_max = PyuTestCore_BiomeTops.ice_spikes,
y_min = PyuTestCore_WorldBottom,
flags = "place_center_x, place_center_z",
})

View File

@ -70,10 +70,10 @@ minetest.register_decoration({
minetest.register_decoration({
deco_type = "schematic",
place_on = {"pyutest_core:mycelium_block", "pyutest_core:grass_block"},
place_on = {"pyutest_core:mycelium_block"},
sidelen = 16,
fill_ratio = 0.003,
biomes = {"mushroom_fields", "forest"},
biomes = {"mushroom_fields"},
y_max = PyuTestCore_BiomeTops.mushroom_fields,
y_min = 1,
schematic = PyuTestCore.get_schem_path("mushroom"),