unified inventory integration

This commit is contained in:
h-v-smacker 2018-09-20 14:46:01 +03:00
parent e595fd03a4
commit 6af363db5a
3 changed files with 20 additions and 1 deletions

View File

@ -2,4 +2,5 @@ default
vessels
flowers
ethereal?
farming?
farming?
unified_inventory?

View File

@ -19,6 +19,16 @@
image files for items must follow the scheme "internal_name_of_the_product.png"
]]
if minetest.get_modpath("unified_inventory") and unified_inventory.register_craft_type then
unified_inventory.register_craft_type("pickling", {
description = "Dark room, wooden shelf",
icon = "pickling_icon.png",
width = 1,
height = 1,
uses_crafting_grid = false,
})
end
local canned_food_definitions = {
apple_jam = {
proper_name = "Apple jam",
@ -348,6 +358,14 @@ for product, def in pairs(canned_food_definitions) do
end,
})
if minetest.get_modpath("unified_inventory") and unified_inventory.register_craft then
unified_inventory.register_craft({
type = "pickling",
output = "canned_food:" .. product .."_plus",
items = {"canned_food:" .. product},
})
end
end
-- a family of shapeless recipes, with sugar for jams

BIN
textures/pickling_icon.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 145 B