Minor Update: Change some things, nothing much.

This commit is contained in:
IamPyu 2024-10-05 16:10:08 -06:00
parent 67fb78b74c
commit e63e5f17de
5 changed files with 23 additions and 18 deletions

View File

@ -1,5 +1,11 @@
# Changelog
## [Oct 5th 2024] Unnamed Minor Update
- Overworld bottom goes from -200 to -65
- Monsters should spawn much more
- Change pickaxe digging speeds
## [Sep 29th - Oct 5th 2024] Update: World Update
This update completely breaks the API and game lol.

View File

@ -7,7 +7,7 @@ PyuTest.BLOCK_SLOW = 1
PyuTest.OVERWORLD_SURFACE_BOTTOM = 1
PyuTest.OVERWORLD_TOP = 4096
PyuTest.OVERWORLD_BOTTOM = -65
PyuTest.OVERWORLD_BOTTOM = -200
-- these values are yoinked from VoxeLibre
-- (https://git.minetest.land/VoxeLibre/VoxeLibre/src/branch/master/mods/MAPGEN/mcl_biomes/init.lua)

View File

@ -9,16 +9,15 @@ dofile(modpath.."/snowman.lua")
dofile(modpath.."/wind_warrior.lua")
dofile(modpath.."/necromancer.lua")
local mapgen = minetest.get_mapgen_setting("mg_name")
if mapgen ~= "flat" and mapgen ~= "singlenode" then
if not PyuTest.is_flat() then
mobs:spawn({
name = "pyutest_mobs:monster",
nodes = {"group:ground"},
interval = 4,
chance = 1,
active_object_count = 3,
active_object_count = 12,
min_light = 0,
max_light = 8,
max_light = minetest.LIGHT_MAX,
max_height = PyuTest.OVERWORLD_TOP,
min_height = PyuTest.OVERWORLD_SURFACE_BOTTOM,
day_toggle = false
@ -29,9 +28,9 @@ if mapgen ~= "flat" and mapgen ~= "singlenode" then
nodes = {"group:ground"},
interval = 2,
chance = 2,
active_object_count = 6,
active_object_count = 15,
min_light = 0,
max_light = 8,
max_light = minetest.LIGHT_MAX,
min_height = PyuTest.OVERWORLD_SURFACE_BOTTOM - 1,
max_height= PyuTest.OVERWORLD_BOTTOM
})

View File

@ -96,9 +96,9 @@ PyuTest.make_tool("pyutest_magic:enchanted_pickaxe", "Enchanted Pickaxe", {}, "p
groupcaps = {
cracky = {
times = {
[PyuTest.BLOCK_FAST] = 0.25,
[PyuTest.BLOCK_NORMAL] = 0.6,
[PyuTest.BLOCK_SLOW] = 7
[PyuTest.BLOCK_FAST] = 0.1,
[PyuTest.BLOCK_NORMAL] = 0.4,
[PyuTest.BLOCK_SLOW] = 6
}
}
}

View File

@ -6,8 +6,8 @@ PyuTest.make_tool("pyutest_tools:wooden_pickaxe", "Wooden Pickaxe", {}, "pyutest
groupcaps = {
cracky = {
times = {
[PyuTest.BLOCK_FAST] = 2,
[PyuTest.BLOCK_NORMAL] = 3
[PyuTest.BLOCK_FAST] = 1.2,
[PyuTest.BLOCK_NORMAL] = 1.4
}
}
}
@ -22,8 +22,8 @@ PyuTest.make_tool("pyutest_tools:stone_pickaxe", "Stone Pickaxe", {}, "pyutest-s
groupcaps = {
cracky = {
times = {
[PyuTest.BLOCK_FAST] = 1.8,
[PyuTest.BLOCK_NORMAL] = 2.4
[PyuTest.BLOCK_FAST] = 1,
[PyuTest.BLOCK_NORMAL] = 1.2
}
}
}
@ -38,8 +38,8 @@ PyuTest.make_tool("pyutest_tools:iron_pickaxe", "Iron Pickaxe", {}, "pyutest-iro
groupcaps = {
cracky = {
times = {
[PyuTest.BLOCK_FAST] = 0.7,
[PyuTest.BLOCK_NORMAL] = 1.5
[PyuTest.BLOCK_FAST] = 0.8,
[PyuTest.BLOCK_NORMAL] = 1
}
}
}
@ -54,8 +54,8 @@ PyuTest.make_tool("pyutest_tools:diamond_pickaxe", "Diamond Pickaxe", {}, "pyute
groupcaps = {
cracky = {
times = {
[PyuTest.BLOCK_FAST] = 0.3,
[PyuTest.BLOCK_NORMAL] = 0.8,
[PyuTest.BLOCK_FAST] = 0.2,
[PyuTest.BLOCK_NORMAL] = 0.6,
[PyuTest.BLOCK_SLOW] = 8
}
}