31 lines
661 B
Lua
31 lines
661 B
Lua
|
|
minetest.register_decoration({
|
|
deco_type = "simple",
|
|
place_on = {"default:dirt_with_grass", "default:dirt_with_dry_grass"},
|
|
sidelen = 16,
|
|
noise_params = {
|
|
offset = 0,
|
|
scale = 0.01,
|
|
spread = {x = 70, y = 70, z = 70},
|
|
seed = 7133,
|
|
octaves = 3,
|
|
persist = 0.6
|
|
},
|
|
y_min = 0,
|
|
y_max = 100,
|
|
decoration = "cucina_vegana:wild_parsley",
|
|
})
|
|
|
|
minetest.register_craft({
|
|
type = "fuel",
|
|
recipe = "cucina_vegana:parsley",
|
|
burntime = 1,
|
|
})
|
|
|
|
minetest.register_craftitem("cucina_vegana:parsley", {
|
|
description = "Parsley",
|
|
inventory_image = "cucina_vegana_parsley.png",
|
|
groups = {flammable = 1, food = 1, eatable = 1},
|
|
on_use = minetest.item_eat(1),
|
|
})
|