2017-02-24 23:14:41 +01:00
|
|
|
-- shared/init.lua
|
|
|
|
|
|
|
|
local me = microexpansion
|
|
|
|
|
|
|
|
-- This mostly contains items that are used by multiple modules and
|
|
|
|
-- don't really fit with anything else.
|
|
|
|
|
|
|
|
-- [register item] Steel Infused Obsidian Ingot
|
|
|
|
me.register_item("steel_infused_obsidian_ingot", {
|
|
|
|
description = "Steel Infused Obsidian Ingot",
|
|
|
|
recipe = {
|
|
|
|
"single",
|
|
|
|
{ 1,
|
|
|
|
{ "default:steel_ingot", "default:obsidian_shard", "default:steel_ingot" },
|
|
|
|
},
|
|
|
|
},
|
|
|
|
})
|
2017-02-24 23:15:02 +01:00
|
|
|
|
|
|
|
-- [register item] Machine Casing
|
|
|
|
me.register_item("machine_casing", {
|
|
|
|
description = "Machine Casing",
|
|
|
|
})
|