2017-02-24 14:14:41 -08: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", {
|
2017-07-25 10:47:25 -07:00
|
|
|
description = "Steel Infused Obsidian Ingot",
|
|
|
|
recipe = {
|
2020-03-04 16:46:22 +01:00
|
|
|
{ 2, {
|
2017-07-25 10:47:25 -07:00
|
|
|
{ "default:steel_ingot", "default:obsidian_shard", "default:steel_ingot" },
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
2017-02-24 14:14:41 -08:00
|
|
|
})
|
2017-02-24 14:15:02 -08:00
|
|
|
|
|
|
|
-- [register item] Machine Casing
|
|
|
|
me.register_item("machine_casing", {
|
2017-07-25 10:47:25 -07:00
|
|
|
description = "Machine Casing",
|
|
|
|
recipe = {
|
|
|
|
{ 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"},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
2017-02-24 14:15:02 -08:00
|
|
|
})
|
2023-10-20 18:31:56 +02:00
|
|
|
|
|
|
|
-- [register item] Gold Wire
|
|
|
|
me.register_item("gold_wire", {
|
|
|
|
description = "Gold Wire",
|
|
|
|
recipe = {
|
|
|
|
{ 2, {
|
|
|
|
{"default:gold_ingot", "default:stick"},
|
|
|
|
{"default:stick", ""}
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
})
|
|
|
|
|
|
|
|
-- [register item] Control Unit
|
|
|
|
me.register_item("logic_chip", {
|
|
|
|
description = "Control Unit",
|
|
|
|
recipe = {
|
|
|
|
{ 2, {
|
|
|
|
{"microexpansion:gold_wire"},
|
|
|
|
{"microexpansion:quartz_crystal"},
|
|
|
|
{"group:wood"}
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
})
|