| | |
| | | minetest.register_craftitem( ":technic:brass_ingot", { |
| | | description = "Brass Ingot", |
| | | inventory_image = "technic_brass_ingot.png", |
| | | groups = {brass_ingot=1} |
| | | }) |
| | | |
| | | minetest.register_craft({ |
| | |
| | | |
| | | minetest.register_craft({ |
| | | output = "node technic:brass_block", |
| | | recipe = {{"technic:brass_ingot", "technic:brass_ingot", "technic:brass_ingot"}, |
| | | {"technic:brass_ingot", "technic:brass_ingot", "technic:brass_ingot"}, |
| | | {"technic:brass_ingot", "technic:brass_ingot", "technic:brass_ingot"}} |
| | | recipe = {{"group:brass_ingot", "group:brass_ingot", "group:brass_ingot"}, |
| | | {"group:brass_ingot", "group:brass_ingot", "group:brass_ingot"}, |
| | | {"group:brass_ingot", "group:brass_ingot", "group:brass_ingot"}} |
| | | }) |
| | | |
| | | minetest.register_craft({ |
| | | output = "craft technic:brass_ingot 9", |
| | | recipe = {{"technic:brass_block"}} |
| | | recipe = {{"group:brass_block"}} |
| | | }) |
| | | |
| | | minetest.register_craft({ |
| | |
| | | type = 'cooking', |
| | | output = "technic:chromium_ingot", |
| | | recipe = "technic:chromium_lump" |
| | | }) |
| | | }) |