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:
parent
fb09deddc1
commit
00106c85c6
3 changed files with 9 additions and 7 deletions
|
@ -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_bluelant = minetest.get_content_id("everness:blue_vine_lantern")
|
||||||
local c_redlant = minetest.get_content_id("everness:glowing_pillar")
|
local c_redlant = minetest.get_content_id("everness:glowing_pillar")
|
||||||
local c_redplant = minetest.get_content_id("everness:bloodspore_plant")
|
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
|
--Kristalle, die um 180° gedreht werden per param2, wenn sie auf dem Boden sind
|
||||||
local erdkristall = {
|
local erdkristall = {
|
||||||
|
@ -382,7 +385,7 @@ minetest.register_on_generated(function(minp, maxp, seed)
|
||||||
if n_biome_e < -0.33 then
|
if n_biome_e < -0.33 then
|
||||||
if n_biome_w < -0.33 then -- algae
|
if n_biome_w < -0.33 then -- algae
|
||||||
if is_deep then --deep algae deco
|
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 }
|
decos = { c_mycena, c_tyellowcrys, c_amanita }
|
||||||
else -- normal algae
|
else -- normal algae
|
||||||
worms = { c_worm_green }
|
worms = { c_worm_green }
|
||||||
|
@ -444,7 +447,6 @@ minetest.register_on_generated(function(minp, maxp, seed)
|
||||||
end
|
end
|
||||||
floor = c_lichen
|
floor = c_lichen
|
||||||
|
|
||||||
|
|
||||||
if mode == 1 and data[ai] == c_air and math.random() < 0.003 then
|
if mode == 1 and data[ai] == c_air and math.random() < 0.003 then
|
||||||
data[ai] = c_bluefly
|
data[ai] = c_bluefly
|
||||||
end
|
end
|
||||||
|
|
|
@ -81,7 +81,7 @@ if ENABLE_LARGE then
|
||||||
stepheight = 0,
|
stepheight = 0,
|
||||||
stay_near = {(mod_mcl and "mcl_core:water_source" or "default:water_source"), 3},
|
stay_near = {(mod_mcl and "mcl_core:water_source" or "default:water_source"), 3},
|
||||||
drops = {
|
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}
|
chance = 1, min = 1, max = 3}
|
||||||
}
|
}
|
||||||
})
|
})
|
||||||
|
@ -128,7 +128,7 @@ if ENABLE_MEDIUM then
|
||||||
stepheight = 0,
|
stepheight = 0,
|
||||||
stay_near = {(mod_mcl and "mcl_core:water_source" or "default:water_source"), 3},
|
stay_near = {(mod_mcl and "mcl_core:water_source" or "default:water_source"), 3},
|
||||||
drops = {
|
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}
|
chance = 1, min = 1, max = 3}
|
||||||
}
|
}
|
||||||
})
|
})
|
||||||
|
@ -175,7 +175,7 @@ if ENABLE_SMALL then
|
||||||
stepheight = 0,
|
stepheight = 0,
|
||||||
stay_near = {(mod_mcl and "mcl_core:water_source" or "default:water_source"), 3},
|
stay_near = {(mod_mcl and "mcl_core:water_source" or "default:water_source"), 3},
|
||||||
drops = {
|
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}
|
chance = 1, min = 1, max = 3}
|
||||||
}
|
}
|
||||||
})
|
})
|
||||||
|
|
|
@ -90,7 +90,7 @@ minetest.register_ore({
|
||||||
clust_num_ores = 5,
|
clust_num_ores = 5,
|
||||||
clust_size = 7,
|
clust_size = 7,
|
||||||
y_min = -32,
|
y_min = -32,
|
||||||
y_max = 2,
|
y_max = -6, -- was 2
|
||||||
noise_params = zinc_params,
|
noise_params = zinc_params,
|
||||||
noise_threshold = zinc_threshold,
|
noise_threshold = zinc_threshold,
|
||||||
})
|
})
|
||||||
|
@ -117,7 +117,7 @@ minetest.register_ore({
|
||||||
clust_num_ores = 5,
|
clust_num_ores = 5,
|
||||||
clust_size = 3,
|
clust_size = 3,
|
||||||
y_min = -16,
|
y_min = -16,
|
||||||
y_max = 16,
|
y_max = -6, --was 16
|
||||||
noise_params = lead_params,
|
noise_params = lead_params,
|
||||||
noise_threshold = lead_threshold,
|
noise_threshold = lead_threshold,
|
||||||
})
|
})
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue