Enriched Uranium.
authorKonstantin Oblaukhov <oblaukhov.konstantin@gmail.com>
Sat, 6 Jul 2013 13:52:41 +0000 (20:52 +0700)
committerKonstantin Oblaukhov <oblaukhov.konstantin@gmail.com>
Sat, 6 Jul 2013 13:52:41 +0000 (20:52 +0700)
technic/extractor.lua
technic/items.lua
technic/textures/technic_enriched_uranium.png [new file with mode: 0644]

index 473a7b39f4ef811cb56b2ae7870573db6703b444..d4fe1cc9b1ebcde8e2181eee70efef4237ffaa16 100644 (file)
@@ -37,6 +37,7 @@ technic.register_extractor_recipe("flowers:viola", 1, "dye:violet", 2)
 technic.register_extractor_recipe("technic:raw_latex", 1, "technic:rubber", 3)
 technic.register_extractor_recipe("moretrees:rubber_tree_trunk_empty", 1, "technic:rubber", 1)
 technic.register_extractor_recipe("moretrees:rubber_tree_trunk", 1, "technic:rubber", 1)
+technic.register_extractor_recipe("technic:uranium", 5, "technic:enriched_uranium", 1)
 
 minetest.register_alias("extractor", "technic:extractor")
 minetest.register_craft({
index 66c5c85a4b0ed9d4bedc04e278a2f8ee27d97fc3..0f2364854f075e0a2fda752f480655e29b56d157 100644 (file)
@@ -10,6 +10,12 @@ minetest.register_craftitem( "technic:doped_silicon_wafer", {
        on_place_on_ground = minetest.craftitem_place_item,
 })
 
+minetest.register_craftitem( "technic:enriched_uranium", {
+       description = "Enriched Uranium",
+       inventory_image = "technic_enriched_uranium.png",
+       on_place_on_ground = minetest.craftitem_place_item,
+})
+
 -- tubes crafting recipes
 
 minetest.register_craft({
diff --git a/technic/textures/technic_enriched_uranium.png b/technic/textures/technic_enriched_uranium.png
new file mode 100644 (file)
index 0000000..8759e65
Binary files /dev/null and b/technic/textures/technic_enriched_uranium.png differ