Add pumpkin pie

This commit is contained in:
Wuzzy 2017-02-01 15:00:22 +01:00
parent 292488e008
commit 090a7d90e1
2 changed files with 14 additions and 0 deletions

View File

@ -288,3 +288,17 @@ minetest.register_craft({
recipe = {"mcl_farming:pumpkin_face"}
})
minetest.register_craftitem("mcl_farming:pumpkin_pie", {
description = "Pumpkin Pie",
stack_max = 64,
inventory_image = "mcl_farming_pumpkin_pie.png",
wield_image = "mcl_farming_pumpkin_pie.png",
on_use = minetest.item_eat(8),
groups = { food = 2, eatable = 8 },
})
minetest.register_craft({
type = "shapeless",
output = "mcl_farming:pumpkin_pie",
recipe = {"mcl_farming:pumpkin_face", "mcl_core:sugar", "mcl_throwing:egg"},
})

Binary file not shown.

After

Width:  |  Height:  |  Size: 481 B