From 39b56074ad450397331511158f47d976a28c14d4 Mon Sep 17 00:00:00 2001 From: Vanessa Ezekowitz Date: Mon, 28 Jul 2014 21:08:49 -0400 Subject: update pipeworks to use modern homedecor-style crafting chain craft 6 any leaves -> oil extract, cook oil -> paraffin, cook paraffin -> plastic old "plastic base" is aliased to paraffin. --- crafts.lua | 64 ++++++++++++++++++++++++++++++++++++++++---------------------- 1 file changed, 41 insertions(+), 23 deletions(-) (limited to 'crafts.lua') diff --git a/crafts.lua b/crafts.lua index 25bf345..ff875a3 100644 --- a/crafts.lua +++ b/crafts.lua @@ -87,47 +87,65 @@ minetest.register_craft( { if minetest.get_modpath("homedecor") == nil then - minetest.register_craftitem(":homedecor:plastic_sheeting", { - description = "Plastic sheet", - inventory_image = "homedecor_plastic_sheeting.png", + minetest.register_craftitem(":homedecor:oil_extract", { + description = "Oil extract", + inventory_image = "homedecor_oil_extract.png", + }) + + minetest.register_craftitem(":homedecor:paraffin", { + description = "Unprocessed paraffin", + inventory_image = "homedecor_paraffin.png", }) - minetest.register_craftitem(":homedecor:plastic_base", { - description = "Unprocessed Plastic base", - wield_image = "homedecor_plastic_base.png", - inventory_image = "homedecor_plastic_base_inv.png", + minetest.register_alias("homedecor:plastic_base", "homedecor:paraffin") + + minetest.register_craftitem(":homedecor:plastic_sheeting", { + description = "Plastic sheet", + inventory_image = "homedecor_plastic_sheeting.png", }) minetest.register_craft({ type = "shapeless", - output = 'homedecor:plastic_base 4', - recipe = { "group:leaves", - "group:leaves", - "group:leaves", - "group:leaves", - "group:leaves", - "group:leaves" + output = "homedecor:oil_extract 4", + recipe = { + "group:leaves", + "group:leaves", + "group:leaves", + "group:leaves", + "group:leaves", + "group:leaves" } }) minetest.register_craft({ - type = "cooking", - output = "homedecor:plastic_sheeting", - recipe = "homedecor:plastic_base", + type = "cooking", + output = "homedecor:paraffin", + recipe = "homedecor:oil_extract", }) minetest.register_craft({ - type = 'fuel', - recipe = 'homedecor:plastic_base', - burntime = 30, + type = "cooking", + output = "homedecor:plastic_sheeting", + recipe = "homedecor:paraffin", }) minetest.register_craft({ - type = 'fuel', - recipe = 'homedecor:plastic_sheeting', - burntime = 30, + type = "fuel", + recipe = "homedecor:oil_extract", + burntime = 30, }) + minetest.register_craft({ + type = "fuel", + recipe = "homedecor:paraffin", + burntime = 30, + }) + + minetest.register_craft({ + type = "fuel", + recipe = "homedecor:plastic_sheeting", + burntime = 30, + }) end minetest.register_craft( { -- cgit v1.2.3