Skip to content
Snippets Groups Projects
Commit f51fe428 authored by Milan's avatar Milan
Browse files

add blueberry seeds (wip)

parent cac6a518
No related branches found
No related tags found
No related merge requests found
......@@ -19,6 +19,15 @@ minetest.register_craftitem("farming:muffin_blueberry", {
on_use = minetest.item_eat(2),
})
-- added by illuna
minetest.register_craftitem("farming:blueberry_seeds", {
description = "Blueberry Seeds",
inventory_image = "farming_blueberry_seeds.png",
on_place = function(itemstack, placer, pointed_thing)
return farming.place_seed(itemstack, placer, pointed_thing, "farming:blueberry_1")
end,
})
minetest.register_craft({
output = "farming:muffin_blueberry 2",
recipe = {
......@@ -61,6 +70,7 @@ crop_def.drop = {
items = {
{items = {'farming:blueberries 2'}, rarity = 1},
{items = {'farming:blueberries'}, rarity = 2},
{items = {'farming:blueberry_seeds'}, rarity = 2},
{items = {'farming:blueberries'}, rarity = 3},
}
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment