Mods in den Spieleordner reingeschoben. So richtig tief.
This commit is contained in:
parent
b4b6c08f4f
commit
f7bc25a670
1674 changed files with 56056 additions and 530 deletions
|
@ -90,9 +90,10 @@ def.groups.growing = nil
|
|||
def.selection_box = farming.select_final
|
||||
def.drop = {
|
||||
items = {
|
||||
{items = {"farming:tomato 3"}, rarity = 1},
|
||||
{items = {"farming:tomato 2"}, rarity = 2},
|
||||
{items = {"farming:tomato 1"}, rarity = 3}
|
||||
{items = {"farming:tomato 2"}, rarity = 1},
|
||||
{items = {"farming:tomato"}, rarity = 2},
|
||||
{items = {"farming:tomato"}, rarity = 3},
|
||||
{items = {"farming:tomato"}, rarity = 4}
|
||||
}
|
||||
}
|
||||
minetest.register_node("farming:tomato_8", table.copy(def))
|
||||
|
@ -108,4 +109,21 @@ farming.registered_plants["farming:tomato"] = {
|
|||
}
|
||||
|
||||
-- mapgen
|
||||
farming.register_decoration("tomato",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.tomato,
|
||||
spread = {x = 100, y = 100, z = 100},
|
||||
seed = 365,
|
||||
octaves = 3,
|
||||
persist = 0.6
|
||||
},
|
||||
y_min = 5, y_max = 25,
|
||||
decoration = "farming:tomato_7"
|
||||
})
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue