Change: Sharks drop 4 fish instead of meat, deep algae cave biome now has vines, lead and zinc spawn below -5 height

This commit is contained in:
N-Nachtigal 2025-06-05 19:33:13 +02:00
parent fb09deddc1
commit 00106c85c6
3 changed files with 9 additions and 7 deletions

View file

@ -237,6 +237,9 @@ minetest.register_on_generated(function(minp, maxp, seed)
local c_bluelant = minetest.get_content_id("everness:blue_vine_lantern")
local c_redlant = minetest.get_content_id("everness:glowing_pillar")
local c_redplant = minetest.get_content_id("everness:bloodspore_plant")
local c_liebeskugeln = minetest.get_content_id("everness:flowered_vine_2")
local c_greenyellowvine = minetest.get_content_id("everness:vine_cave_end")
local c_orangeyellowvine = minetest.get_content_id("everness:golden_vine_end")
--Kristalle, die um 180° gedreht werden per param2, wenn sie auf dem Boden sind
local erdkristall = {
@ -382,7 +385,7 @@ minetest.register_on_generated(function(minp, maxp, seed)
if n_biome_e < -0.33 then
if n_biome_w < -0.33 then -- algae
if is_deep then --deep algae deco
worms = { c_worm_green, c_tyellowcrys }
worms = { c_worm_green, c_tyellowcrys, c_worm_green, c_tyellowcrys, c_worm_green, c_tyellowcrys, c_orangeyellowvine }
decos = { c_mycena, c_tyellowcrys, c_amanita }
else -- normal algae
worms = { c_worm_green }
@ -443,7 +446,6 @@ minetest.register_on_generated(function(minp, maxp, seed)
deco_mul = 3.3
end
floor = c_lichen
if mode == 1 and data[ai] == c_air and math.random() < 0.003 then
data[ai] = c_bluefly

View file

@ -81,7 +81,7 @@ if ENABLE_LARGE then
stepheight = 0,
stay_near = {(mod_mcl and "mcl_core:water_source" or "default:water_source"), 3},
drops = {
{name = (mod_mcl and "mcl_mobitems:beef" or "mobs:meat_raw"),
{name = (mod_mcl and "mcl_mobitems:beef" or "animalworld:rawfish 4"),
chance = 1, min = 1, max = 3}
}
})
@ -128,7 +128,7 @@ if ENABLE_MEDIUM then
stepheight = 0,
stay_near = {(mod_mcl and "mcl_core:water_source" or "default:water_source"), 3},
drops = {
{name = (mod_mcl and "mcl_mobitems:beef" or "mobs:meat_raw"),
{name = (mod_mcl and "mcl_mobitems:beef" or "animalworld:rawfish 4"),
chance = 1, min = 1, max = 3}
}
})
@ -175,7 +175,7 @@ if ENABLE_SMALL then
stepheight = 0,
stay_near = {(mod_mcl and "mcl_core:water_source" or "default:water_source"), 3},
drops = {
{name = (mod_mcl and "mcl_mobitems:beef" or "mobs:meat_raw"),
{name = (mod_mcl and "mcl_mobitems:beef" or "animalworld:rawfish 4"),
chance = 1, min = 1, max = 3}
}
})

View file

@ -90,7 +90,7 @@ minetest.register_ore({
clust_num_ores = 5,
clust_size = 7,
y_min = -32,
y_max = 2,
y_max = -6, -- was 2
noise_params = zinc_params,
noise_threshold = zinc_threshold,
})
@ -117,7 +117,7 @@ minetest.register_ore({
clust_num_ores = 5,
clust_size = 3,
y_min = -16,
y_max = 16,
y_max = -6, --was 16
noise_params = lead_params,
noise_threshold = lead_threshold,
})