Mods in den Spieleordner reingeschoben. So richtig tief.

This commit is contained in:
N-Nachtigal 2025-05-08 22:41:25 +02:00
parent b4b6c08f4f
commit f7bc25a670
1674 changed files with 56056 additions and 530 deletions

View file

@ -77,7 +77,7 @@ def.tiles = {"farming_carrot_7.png"}
def.drop = {
items = {
{items = {"farming:carrot"}, rarity = 1},
{items = {"farming:carrot 2"}, rarity = 3}
{items = {"farming:carrot"}, rarity = 3}
}
}
minetest.register_node("farming:carrot_7", table.copy(def))
@ -90,7 +90,8 @@ def.selection_box = farming.select_final
def.drop = {
items = {
{items = {"farming:carrot 2"}, rarity = 1},
{items = {"farming:carrot 3"}, rarity = 2}
{items = {"farming:carrot"}, rarity = 2},
{items = {"farming:carrot"}, rarity = 3},
}
}
minetest.register_node("farming:carrot_8", table.copy(def))
@ -106,4 +107,21 @@ farming.registered_plants["farming:carrot"] = {
}
-- mapgen
farming.register_decoration("carrot",8)
minetest.register_decoration({
deco_type = "simple",
place_on = {
"default:dirt_with_grass", "mcl_core:dirt_with_grass", "ethereal:prairie_dirt"
},
sidelen = 16,
noise_params = {
offset = 0,
scale = farming.carrot,
spread = {x = 100, y = 100, z = 100},
seed = 890,
octaves = 3,
persist = 0.6
},
y_min = 1, y_max = 30,
decoration = "farming:carrot_7"
})