From 01b475c7cc7821489ad1fbe2db5ad85bcfcc10f9 Mon Sep 17 00:00:00 2001 From: Zefram Date: Sun, 6 Jul 2014 20:22:15 +0100 Subject: Fine gold and silver wire items Not used in any recipes yet. --- technic/crafts.lua | 18 ++++++++++++++++++ technic/items.lua | 10 ++++++++++ technic/textures/technic_fine_gold_wire.png | Bin 0 -> 474 bytes technic/textures/technic_fine_silver_wire.png | Bin 0 -> 546 bytes .../textures/technicx32/technic_fine_gold_wire.png | Bin 0 -> 1864 bytes .../textures/technicx32/technic_fine_silver_wire.png | Bin 0 -> 2187 bytes 6 files changed, 28 insertions(+) create mode 100644 technic/textures/technic_fine_gold_wire.png create mode 100644 technic/textures/technic_fine_silver_wire.png create mode 100644 technic/textures/technicx32/technic_fine_gold_wire.png create mode 100644 technic/textures/technicx32/technic_fine_silver_wire.png diff --git a/technic/crafts.lua b/technic/crafts.lua index 4ed2ebb..1776de5 100644 --- a/technic/crafts.lua +++ b/technic/crafts.lua @@ -61,6 +61,24 @@ minetest.register_craft({ } }) +minetest.register_craft({ + output = 'technic:fine_gold_wire 2', + recipe = { + {'', 'default:gold_ingot', ''}, + {'', 'default:gold_ingot', ''}, + {'', 'default:gold_ingot', ''}, + } +}) + +minetest.register_craft({ + output = 'technic:fine_silver_wire 2', + recipe = { + {'', 'moreores:silver_ingot', ''}, + {'', 'moreores:silver_ingot', ''}, + {'', 'moreores:silver_ingot', ''}, + } +}) + minetest.register_craft({ output = 'technic:copper_coil 1', recipe = { diff --git a/technic/items.lua b/technic/items.lua index 1fdb018..a902947 100644 --- a/technic/items.lua +++ b/technic/items.lua @@ -80,6 +80,16 @@ minetest.register_craftitem("technic:fine_copper_wire", { inventory_image = "technic_fine_copper_wire.png", }) +minetest.register_craftitem("technic:fine_gold_wire", { + description = S("Fine Gold Wire"), + inventory_image = "technic_fine_gold_wire.png", +}) + +minetest.register_craftitem("technic:fine_silver_wire", { + description = S("Fine Silver Wire"), + inventory_image = "technic_fine_silver_wire.png", +}) + minetest.register_craftitem("technic:copper_coil", { description = S("Copper Coil"), inventory_image = "technic_copper_coil.png", diff --git a/technic/textures/technic_fine_gold_wire.png b/technic/textures/technic_fine_gold_wire.png new file mode 100644 index 0000000..54a7a52 Binary files /dev/null and b/technic/textures/technic_fine_gold_wire.png differ diff --git a/technic/textures/technic_fine_silver_wire.png b/technic/textures/technic_fine_silver_wire.png new file mode 100644 index 0000000..f40a52b Binary files /dev/null and b/technic/textures/technic_fine_silver_wire.png differ diff --git a/technic/textures/technicx32/technic_fine_gold_wire.png b/technic/textures/technicx32/technic_fine_gold_wire.png new file mode 100644 index 0000000..be2a38a Binary files /dev/null and b/technic/textures/technicx32/technic_fine_gold_wire.png differ diff --git a/technic/textures/technicx32/technic_fine_silver_wire.png b/technic/textures/technicx32/technic_fine_silver_wire.png new file mode 100644 index 0000000..d43cb6a Binary files /dev/null and b/technic/textures/technicx32/technic_fine_silver_wire.png differ -- cgit v1.2.3