microexpansion/modules/shared/init.lua
octacian f4671fb685 Add Shared Module
Adds shared module along with Steel Infused Obsidian Ingot. Textures by @XtremeHacker
2017-02-24 14:14:41 -08:00

18 lines
436 B
Lua

-- 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" },
},
},
})