mirror of
https://github.com/mt-mods/home_workshop_modpack.git
synced 2025-07-05 18:00:36 +02:00
* start work on xcompating this * make items digable in farlands * remove reduntant if check * use xcompat for copperblock and remove checks that prevent issues on non mtg before * computers crafting * last two crafts
19 lines
718 B
Lua
19 lines
718 B
Lua
local materials = xcompat.materials
|
|
|
|
minetest.register_craft({
|
|
output = "home_workshop_misc:tool_cabinet",
|
|
recipe = {
|
|
{ "basic_materials:motor", materials.axe_steel, materials.pick_steel },
|
|
{ materials.steel_ingot, "home_workshop_misc:drawer_small", materials.steel_ingot },
|
|
{ materials.steel_ingot, "home_workshop_misc:drawer_small", materials.steel_ingot }
|
|
},
|
|
})
|
|
|
|
minetest.register_craft({
|
|
output = "home_workshop_misc:beer_tap",
|
|
recipe = {
|
|
{ "group:stick", materials.steel_ingot, "group:stick" },
|
|
{ "basic_materials:steel_bar", materials.steel_ingot, "basic_materials:steel_bar" },
|
|
{ materials.steel_ingot, materials.steel_ingot, materials.steel_ingot }
|
|
},
|
|
}) |