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
|
@ -202,9 +202,10 @@ def.selection_box = farming.select_final
|
|||
def.drop = {
|
||||
items = {
|
||||
{items = {"farming:trellis"}, rarity = 1},
|
||||
{items = {"farming:grapes 3"}, rarity = 1},
|
||||
{items = {"farming:grapes 1"}, rarity = 2},
|
||||
{items = {"farming:grapes 1"}, rarity = 3}
|
||||
{items = {"farming:grapes 2"}, rarity = 1},
|
||||
{items = {"farming:grapes"}, rarity = 2},
|
||||
{items = {"farming:grapes"}, rarity = 3},
|
||||
{items = {"farming:grapes"}, rarity = 4}
|
||||
}
|
||||
}
|
||||
minetest.register_node("farming:grapes_8", table.copy(def))
|
||||
|
@ -232,9 +233,9 @@ minetest.register_node("farming:grapebush", {
|
|||
sunlight_propagates = true,
|
||||
drop = {
|
||||
items = {
|
||||
{items = {"farming:grapes 1"}, rarity = 1},
|
||||
{items = {"farming:grapes 1"}, rarity = 2},
|
||||
{items = {"farming:grapes 1"}, rarity = 3}
|
||||
{items = {"farming:grapes"}, rarity = 1},
|
||||
{items = {"farming:grapes"}, rarity = 2},
|
||||
{items = {"farming:grapes"}, rarity = 3}
|
||||
}
|
||||
},
|
||||
selection_box = farming.select,
|
||||
|
@ -247,4 +248,21 @@ minetest.register_node("farming:grapebush", {
|
|||
})
|
||||
|
||||
-- mapgen
|
||||
farming.register_decoration("grapes",8,"farming:grapebush")
|
||||
|
||||
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.grapes,
|
||||
spread = {x = 100, y = 100, z = 100},
|
||||
seed = 578,
|
||||
octaves = 3,
|
||||
persist = 0.6
|
||||
},
|
||||
y_min = 25, y_max = 50,
|
||||
decoration = "farming:grapebush"
|
||||
})
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue