cucina_vegana/parsley.lua

31 lines
661 B
Lua
Raw Normal View History

2018-04-22 23:18:59 +02:00
minetest.register_decoration({
deco_type = "simple",
place_on = {"default:dirt_with_grass", "default:dirt_with_dry_grass"},
sidelen = 16,
noise_params = {
offset = 0,
2018-04-23 17:18:11 +02:00
scale = 0.01,
2018-04-22 23:18:59 +02:00
spread = {x = 70, y = 70, z = 70},
seed = 7133,
2018-04-23 17:18:11 +02:00
octaves = 3,
2018-04-22 23:18:59 +02:00
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),
})