From 8b16fc1176bbebac42298c704cb0a0b0f3961a1f Mon Sep 17 00:00:00 2001
From: Novatux <nathanael.courant@laposte.net>
Date: Sun, 8 Mar 2015 13:32:41 +0100
Subject: Add lead block, and lead & sulfur dusts

---
 technic_worldgen/crafts.lua | 13 +++++++++++++
 1 file changed, 13 insertions(+)

(limited to 'technic_worldgen')

diff --git a/technic_worldgen/crafts.lua b/technic_worldgen/crafts.lua
index ac84652..fba9df9 100644
--- a/technic_worldgen/crafts.lua
+++ b/technic_worldgen/crafts.lua
@@ -38,6 +38,11 @@ minetest.register_craftitem(":technic:lead_lump", {
 	inventory_image = "technic_lead_lump.png",
 })
 
+minetest.register_craftitem(":technic:lead_ingot", {
+	description = S("Lead Ingot"),
+	inventory_image = "technic_lead_ingot.png",
+})
+
 minetest.register_craftitem(":technic:sulfur_lump", {
 	description = S("Sulfur Lump"),
 	inventory_image = "technic_sulfur_lump.png",
@@ -91,6 +96,7 @@ end
 register_block("technic:uranium_block", "technic:uranium_ingot")
 register_block("technic:chromium_block", "technic:chromium_ingot")
 register_block("technic:zinc_block", "technic:zinc_ingot")
+register_block("technic:lead_block", "technic:lead_ingot")
 register_block("technic:brass_block", "technic:brass_ingot")
 register_block("technic:cast_iron_block", "technic:cast_iron_ingot")
 register_block("technic:carbon_steel_block", "technic:carbon_steel_ingot")
@@ -114,6 +120,13 @@ minetest.register_craft({
 	output = "technic:uranium_ingot",
 })
 
+minetest.register_craft({
+	type = 'cooking',
+	recipe = "technic:lead_lump",
+	output = "technic:lead_ingot",
+})
+
+
 minetest.register_craft({
 	type = 'cooking',
 	recipe = minetest.registered_aliases["technic:wrought_iron_ingot"],
-- 
cgit v1.2.3