Unnamed Minor Update

This commit is contained in:
IamPyu 2024-10-06 10:24:45 -06:00
parent e63e5f17de
commit f812b9f462
4 changed files with 10 additions and 5 deletions

View File

@ -1,5 +1,10 @@
# Changelog
## [Oct 6th 2024] Unnamed Minor Update
- Make monsters spawn less
- Update every node still using the old block group
## [Oct 5th 2024] Unnamed Minor Update
- Overworld bottom goes from -200 to -65

View File

@ -18,7 +18,7 @@ PyuTest.create_boss_egg = function(mob_id, desc, texture, addegg, no_creative, c
local cage_id = "pyutest_mobs:"..mob_name.."_spawn_cage"
PyuTest.make_node(cage_id, desc:gsub("Spawn Egg", "") .. "Boss Spawner Cage", {
block = PyuTest.BLOCK_BREAKABLE_LONG
cracky = PyuTest.BLOCK_SLOW
}, {"pyutest-cage.png"}, {
drawtype = "glasslike",
on_rightclick = function(pos)

View File

@ -15,7 +15,7 @@ if not PyuTest.is_flat() then
nodes = {"group:ground"},
interval = 4,
chance = 1,
active_object_count = 12,
active_object_count = 5,
min_light = 0,
max_light = minetest.LIGHT_MAX,
max_height = PyuTest.OVERWORLD_TOP,
@ -28,7 +28,7 @@ if not PyuTest.is_flat() then
nodes = {"group:ground"},
interval = 2,
chance = 2,
active_object_count = 15,
active_object_count = 7,
min_light = 0,
max_light = minetest.LIGHT_MAX,
min_height = PyuTest.OVERWORLD_SURFACE_BOTTOM - 1,

View File

@ -41,7 +41,7 @@ PyuTest.make_flower("pyutest_flowers:grass_plant", "Grass", "pyutest-grass-plant
PyuTest.make_flower("pyutest_flowers:sugarcane", "Sugarcane", "pyutest-sugarcane.png", "pyutest_flowers:green_dye", false, nil)
PyuTest.make_node("pyutest_flowers:lilypad", "Lily Pad", {
block = PyuTest.BLOCK_BREAKABLE_INSTANT
oddly_breakable_by_hand = PyuTest.BLOCK_FAST
}, {"pyutest-lilypad.png"}, {
drawtype = "signlike",
paramtype = "light",
@ -95,7 +95,7 @@ PyuTest.make_flower("pyutest_flowers:kelp", "Kelp", "pyutest-kelp.png", "pyutest
PyuTest.make_flower("pyutest_flowers:small_mushroom", "Small Mushroom", "pyutest-mushroom-small.png", "pyutest_flowers:red_dye", false, nil, {
groups = {
block = PyuTest.BLOCK_BREAKABLE_INSTANT,
oddly_breakable_by_hand = PyuTest.BLOCK_FAST,
flammable = 1,
flower = 1,
dig_immediate = 1,