Added Ores module

This commit is contained in:
XtremeHacker
2017-02-26 09:12:52 -08:00
parent 9cb4790f40
commit 169ea1ce76
5 changed files with 43 additions and 2 deletions

View File

@ -19,4 +19,12 @@ me.register_item("steel_infused_obsidian_ingot", {
-- [register item] Machine Casing
me.register_item("machine_casing", {
description = "Machine Casing",
recipe = {
"single",
{ 1,
{"default:steel_ingot", "default:steel_ingot", "default:steel_ingot"},
{"default:steel_ingot", "default:copper_ingot", "default:steel_ingot"},
{"default:steel_ingot", "default:steel_ingot", "default:steel_ingot"}
},
},
})