diff --git a/food.lua b/food.lua index b2091a8..07c1fce 100644 --- a/food.lua +++ b/food.lua @@ -417,6 +417,21 @@ minetest.register_craft({ } }) +-- Mac & Cheese + +minetest.register_craftitem("farming:mac_and_cheese", { + description = S("Mac & Cheese"), + inventory_image = "farming_mac_and_cheese.png", + on_use = minetest.item_eat(6, "farming:bowl") +}) + +minetest.register_craft({ + output = "farming:mac_and_cheese", + recipe = { + {"group:food_pasta", "group:food_cheese", "group:food_bowl"} + } +}) + -- Spaghetti minetest.register_craftitem("farming:spaghetti", { diff --git a/license.txt b/license.txt index 961a49f..ded3fee 100644 --- a/license.txt +++ b/license.txt @@ -180,3 +180,6 @@ Created by TechM8 (https://www.deviantart.com/techm8) Created by RZR0 (CC-BY-NC-SA) farming_blueberry_pie.png + +Created by DMBuce (MIT - https://github.com/DMBuce/hatchling-snacks) + farming_mac_and_cheese.png diff --git a/textures/farming_mac_and_cheese.png b/textures/farming_mac_and_cheese.png new file mode 100644 index 0000000..9ae8b16 Binary files /dev/null and b/textures/farming_mac_and_cheese.png differ