mirror of
https://github.com/theFox6/microexpansion.git
synced 2024-11-19 22:03:54 +01:00
a21dbd9b82
* Fix spacing in various files --------- Co-authored-by: theFox6 <the.Fox6@gmx.de>
54 lines
1.4 KiB
Lua
54 lines
1.4 KiB
Lua
-- crafting/shared.lua
|
|
|
|
local me = microexpansion
|
|
|
|
-- custom items that are used by multiple devices
|
|
local steel_infused_obsidian_ingot_recipe, machine_casing_recipe
|
|
|
|
if minetest.get_modpath("mcl_core") then
|
|
steel_infused_obsidian_ingot_recipe = {
|
|
{ 2, {
|
|
{ "mcl_core:iron_ingot", "mcl_core:obsidian", "mcl_core:iron_ingot" },
|
|
},
|
|
},
|
|
}
|
|
|
|
machine_casing_recipe = {
|
|
{ 1, {
|
|
{"mcl_core:iron_ingot", "mcl_core:iron_ingot", "mcl_core:iron_ingot"},
|
|
{"mcl_core:iron_ingot", "mcl_copper:copper_ingot", "mcl_core:iron_ingot"},
|
|
{"mcl_core:iron_ingot", "mcl_core:iron_ingot", "mcl_core:iron_ingot"},
|
|
},
|
|
},
|
|
}
|
|
|
|
else
|
|
steel_infused_obsidian_ingot_recipe = {
|
|
{ 2, {
|
|
{ "default:steel_ingot", "default:obsidian_shard", "default:steel_ingot" },
|
|
},
|
|
},
|
|
}
|
|
|
|
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"},
|
|
},
|
|
},
|
|
}
|
|
|
|
end
|
|
-- [register item] Steel Infused Obsidian Ingot
|
|
me.register_item("steel_infused_obsidian_ingot", {
|
|
description = "Steel Infused Obsidian Ingot",
|
|
recipe = steel_infused_obsidian_ingot_recipe,
|
|
})
|
|
|
|
-- [register item] Machine Casing
|
|
me.register_item("machine_casing", {
|
|
description = "Machine Casing",
|
|
recipe = machine_casing_recipe,
|
|
})
|