mirror of
https://github.com/minetest-mods/technic.git
synced 2024-11-05 06:53:52 +01:00
Enriched Uranium.
This commit is contained in:
parent
220c61ce91
commit
8be389e774
@ -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("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_empty", 1, "technic:rubber", 1)
|
||||||
technic.register_extractor_recipe("moretrees:rubber_tree_trunk", 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_alias("extractor", "technic:extractor")
|
||||||
minetest.register_craft({
|
minetest.register_craft({
|
||||||
|
@ -10,6 +10,12 @@ minetest.register_craftitem( "technic:doped_silicon_wafer", {
|
|||||||
on_place_on_ground = minetest.craftitem_place_item,
|
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
|
-- tubes crafting recipes
|
||||||
|
|
||||||
minetest.register_craft({
|
minetest.register_craft({
|
||||||
|
BIN
technic/textures/technic_enriched_uranium.png
Normal file
BIN
technic/textures/technic_enriched_uranium.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 301 B |
Loading…
Reference in New Issue
Block a user