add mochi

This commit is contained in:
tenplus1 2021-04-09 19:26:20 +01:00
parent 113fac2647
commit 5b9bd1e6d6
2 changed files with 22 additions and 0 deletions

View File

@ -639,3 +639,25 @@ minetest.register_craft({
{"group:food_skillet", "farming:skillet"}
}
})
-- Mochi
minetest.register_craftitem("farming:mochi", {
description = S("Mochi"),
inventory_image = "farming_mochi.png",
on_use = minetest.item_eat(3),
groups = {flammable = 2},
})
minetest.register_craft({
type = "shapeless",
output = "farming:mochi",
recipe = {
"group:food_mortar_pestle", "group:food_rice", "group:food_rice",
"group:food_sugar", "group:water_bucket"
},
replacements = {
{"group:food_mortar_pestle", "farming:mortar_pestle"},
{"group:water_bucket", "bucket:bucket_empty"}
}
})

BIN
textures/farming_mochi.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 212 B