summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorh-v-smacker <hans-von-smacker+github@gmail.com>2018-09-20 14:46:01 +0300
committerh-v-smacker <hans-von-smacker+github@gmail.com>2018-09-20 14:46:01 +0300
commit6af363db5aedbfe1eb77b9504315d441f0815d3c (patch)
tree2ede7fe1aa7556d783da01f52ceb42817adf0a65
parente595fd03a419095574f1ba9c3bb266a5126fc815 (diff)
unified inventory integrationHEADorigin/masterorigin/HEADmaster
-rw-r--r--depends.txt3
-rw-r--r--init.lua18
-rw-r--r--textures/pickling_icon.pngbin0 -> 145 bytes
3 files changed, 20 insertions, 1 deletions
diff --git a/depends.txt b/depends.txt
index 29e384f..3b565c6 100644
--- a/depends.txt
+++ b/depends.txt
@@ -2,4 +2,5 @@ default
vessels
flowers
ethereal?
-farming? \ No newline at end of file
+farming?
+unified_inventory? \ No newline at end of file
diff --git a/init.lua b/init.lua
index 7bd950e..c31d3a7 100644
--- a/init.lua
+++ b/init.lua
@@ -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
diff --git a/textures/pickling_icon.png b/textures/pickling_icon.png
new file mode 100644
index 0000000..63ad92d
--- /dev/null
+++ b/textures/pickling_icon.png
Binary files differ