mirror of
https://github.com/theFox6/microexpansion.git
synced 2024-11-05 06:53:45 +01:00
18 lines
436 B
Lua
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" },
|
||
|
},
|
||
|
},
|
||
|
})
|