summaryrefslogtreecommitdiff
path: root/homedecor/crafts.lua
diff options
context:
space:
mode:
Diffstat (limited to 'homedecor/crafts.lua')
-rw-r--r--homedecor/crafts.lua609
1 files changed, 146 insertions, 463 deletions
diff --git a/homedecor/crafts.lua b/homedecor/crafts.lua
index f924981..98f2470 100644
--- a/homedecor/crafts.lua
+++ b/homedecor/crafts.lua
@@ -6,63 +6,16 @@ local S = homedecor_i18n.gettext
-- misc craftitems
-minetest.register_craftitem("homedecor:terracotta_base", {
- description = S("Uncooked Terracotta Base"),
- inventory_image = "homedecor_terracotta_base.png",
-})
-
minetest.register_craftitem("homedecor:roof_tile_terracotta", {
description = S("Terracotta Roof Tile"),
inventory_image = "homedecor_roof_tile_terracotta.png",
})
-minetest.register_craftitem("homedecor:oil_extract", {
- description = S("Oil extract"),
- inventory_image = "homedecor_oil_extract.png",
-})
-
-minetest.register_craftitem("homedecor:paraffin", {
- description = S("Unprocessed paraffin"),
- inventory_image = "homedecor_paraffin.png",
-})
-
-minetest.register_alias("homedecor:plastic_base", "homedecor:paraffin")
-
-minetest.register_craftitem("homedecor:plastic_sheeting", {
- description = S("Plastic sheet"),
- inventory_image = "homedecor_plastic_sheeting.png",
-})
-
-minetest.register_craftitem("homedecor:plastic_strips", {
- description = S("Plastic strips"),
- inventory_image = "homedecor_plastic_strips.png",
-})
-
minetest.register_craftitem("homedecor:drawer_small", {
description = S("Small Wooden Drawer"),
inventory_image = "homedecor_drawer_small.png",
})
-minetest.register_craftitem("homedecor:ic", {
- description = S("Simple Integrated Circuit"),
- inventory_image = "homedecor_ic.png",
-})
-
-minetest.register_craftitem("homedecor:heating_element", {
- description = S("Heating element"),
- inventory_image = "homedecor_heating_element.png",
-})
-
-minetest.register_craftitem("homedecor:motor", {
- description = S("Motor"),
- inventory_image = "homedecor_motor.png",
-})
-
-minetest.register_craftitem("homedecor:power_crystal", {
- description = S("Power Crystal"),
- inventory_image = "homedecor_power_crystal.png",
-})
-
minetest.register_craftitem("homedecor:blank_canvas", {
description = S("Blank Canvas"),
inventory_image = "homedecor_blank_canvas.png"
@@ -78,21 +31,6 @@ minetest.register_craftitem("homedecor:dvd_player", {
inventory_image = "homedecor_dvd_player.png"
})
-minetest.register_craftitem("homedecor:empty_spool", {
- description = S("Empty wire spool"),
- inventory_image = "homedecor_empty_spool.png"
-})
-
-minetest.register_craftitem("homedecor:copper_wire", {
- description = S("Spool of copper wire"),
- inventory_image = "homedecor_copper_wire.png"
-})
-
-minetest.register_craftitem("homedecor:steel_wire", {
- description = S("Spool of steel wire"),
- inventory_image = "homedecor_steel_wire.png"
-})
-
minetest.register_craftitem("homedecor:speaker_driver", {
description = S("Speaker driver"),
inventory_image = "homedecor_speaker_driver_inv.png"
@@ -103,26 +41,6 @@ minetest.register_craftitem("homedecor:fan_blades", {
inventory_image = "homedecor_fan_blades.png"
})
-minetest.register_craftitem("homedecor:copper_strip", {
- description = S("Copper Strip"),
- inventory_image = "homedecor_copper_strip.png"
-})
-
-minetest.register_craftitem("homedecor:steel_strip", {
- description = S("Steel Strip"),
- inventory_image = "homedecor_steel_strip.png"
-})
-
-minetest.register_craftitem(":glooptest:chainlink", {
- description = S("Steel chainlink"),
- inventory_image = "homedecor_chainlink_steel.png"
-})
-
-minetest.register_craftitem("homedecor:chainlink_brass", {
- description = S("Brass chainlink"),
- inventory_image = "homedecor_chainlink_brass.png"
-})
-
minetest.register_craftitem("homedecor:soda_can", {
description = S("Soda Can"),
inventory_image = "homedecor_soda_can.png",
@@ -134,165 +52,21 @@ minetest.register_craftitem("homedecor:coin", {
inventory_image = "homedecor_coin.png",
})
--- alternate crafting if mesecons is/isn't installed
-
-if not minetest.get_modpath("mesecons") then
-
- minetest.register_craftitem(":mesecons_materials:silicon", {
- description = S("Silicon lump"),
- inventory_image = "homedecor_silicon.png",
- })
-
- minetest.register_craft( {
- output = "mesecons_materials:silicon 4",
- recipe = {
- { "default:sand", "default:sand" },
- { "default:sand", "default:steel_ingot" },
- },
- })
-
-end
-
--- alternate crafting if technic is/isn't installed
-if not minetest.get_modpath("technic") then
- minetest.register_craftitem(":technic:brass_ingot", {
- description = S("Brass Ingot"),
- inventory_image = "homedecor_brass_ingot.png",
- })
-
- if minetest.get_modpath("moreores") then
- minetest.register_craft( {
- type = "shapeless",
- output = "technic:brass_ingot 2",
- recipe = {
- "moreores:silver_ingot",
- "default:copper_ingot",
- },
- })
- else
- minetest.register_craft( {
- type = "shapeless",
- output = "technic:brass_ingot 3",
- recipe = {
- "default:steel_ingot",
- "default:copper_ingot",
- "default:gold_ingot",
- },
- })
- end
-end
-
-minetest.register_alias("homedecor:brass_ingot", "technic:brass_ingot")
-
-- the actual crafts
minetest.register_craft( {
- output = "homedecor:copper_strip 12",
- recipe = {
- { "", "default:copper_ingot", "" },
- { "default:copper_ingot", "", "" },
- },
-})
-
-minetest.register_craft( {
- output = "homedecor:steel_strip 12",
- recipe = {
- { "", "default:steel_ingot", "" },
- { "default:steel_ingot", "", "" },
- },
-})
-
-minetest.register_craft( {
output = "homedecor:fan_blades 2",
recipe = {
- { "", "homedecor:plastic_sheeting", "" },
+ { "", "basic_materials:plastic_sheet", "" },
{ "", "default:steel_ingot", "" },
- { "homedecor:plastic_sheeting", "", "homedecor:plastic_sheeting" }
- },
-})
-
-minetest.register_craft( {
- output = "homedecor:empty_spool 3",
- recipe = {
- { "homedecor:plastic_sheeting", "homedecor:plastic_sheeting", "homedecor:plastic_sheeting" },
- { "", "homedecor:plastic_sheeting", "" },
- { "homedecor:plastic_sheeting", "homedecor:plastic_sheeting", "homedecor:plastic_sheeting" }
- },
-})
-
-minetest.register_craft( {
- output = "homedecor:steel_wire 2",
- type = "shapeless",
- recipe = {
- "default:steel_ingot",
- "homedecor:empty_spool",
- "homedecor:empty_spool",
- },
-})
-
-minetest.register_craft( {
- output = "homedecor:copper_wire 2",
- type = "shapeless",
- recipe = {
- "default:copper_ingot",
- "homedecor:empty_spool",
- "homedecor:empty_spool",
- },
-})
-
-minetest.register_craft( {
- output = "homedecor:plastic_strips 3",
- recipe = {
- { "homedecor:plastic_sheeting", "homedecor:plastic_sheeting", "homedecor:plastic_sheeting" }
- },
-})
-
-minetest.register_craft( {
- output = "homedecor:heating_element 2",
- recipe = {
- { "default:copper_ingot", "default:mese_crystal_fragment", "default:copper_ingot" }
- },
-})
-
-minetest.register_craft( {
- output = "homedecor:motor 2",
- recipe = {
- { "default:mese_crystal_fragment", "homedecor:copper_wire", "homedecor:plastic_sheeting" },
- { "default:copper_ingot", "default:steel_ingot", "default:steel_ingot" },
- { "default:mese_crystal_fragment", "homedecor:copper_wire", "homedecor:plastic_sheeting" }
+ { "basic_materials:plastic_sheet", "", "basic_materials:plastic_sheet" }
},
})
minetest.register_craft({
- --type = "shapeless",
- output = "homedecor:power_crystal 2",
- recipe = {
- { "default:mese_crystal_fragment", "default:torch", "default:mese_crystal_fragment" },
- { "default:diamond", "default:gold_ingot", "default:diamond" }
- },
-})
-
-minetest.register_craft({
- type = "fuel",
- recipe = "homedecor:power_crystal",
- burntime = 50,
-})
-
-minetest.register_craft( {
- type = "shapeless",
- output = "homedecor:terracotta_base 8",
- recipe = {
- "default:dirt",
- "default:clay_lump",
- "bucket:bucket_water"
- },
- replacements = { {"bucket:bucket_water", "bucket:bucket_empty"}, },
-})
-
-minetest.register_craft({
type = "cooking",
output = "homedecor:roof_tile_terracotta",
- recipe = "homedecor:terracotta_base",
+ recipe = "basic_materials:terracotta_base",
})
minetest.register_craft( {
@@ -320,55 +94,12 @@ minetest.register_craft( {
--
-minetest.register_craft({
- type = "shapeless",
- output = "homedecor:oil_extract 4",
- recipe = {
- "group:leaves",
- "group:leaves",
- "group:leaves",
- "group:leaves",
- "group:leaves",
- "group:leaves"
- }
-})
-
-minetest.register_craft({
- type = "cooking",
- output = "homedecor:paraffin",
- recipe = "homedecor:oil_extract",
-})
-
-minetest.register_craft({
- type = "cooking",
- output = "homedecor:plastic_sheeting",
- recipe = "homedecor:paraffin",
-})
-
-minetest.register_craft({
- type = "fuel",
- recipe = "homedecor:oil_extract",
- burntime = 30,
-})
-
-minetest.register_craft({
- type = "fuel",
- recipe = "homedecor:paraffin",
- burntime = 30,
-})
-
-minetest.register_craft({
- type = "fuel",
- recipe = "homedecor:plastic_sheeting",
- burntime = 30,
-})
-
minetest.register_craft( {
output = "homedecor:flower_pot_green",
recipe = {
{ "", "dye:dark_green", "" },
- { "homedecor:plastic_sheeting", "default:dirt", "homedecor:plastic_sheeting" },
- { "homedecor:plastic_sheeting", "homedecor:plastic_sheeting", "homedecor:plastic_sheeting" },
+ { "basic_materials:plastic_sheet", "default:dirt", "basic_materials:plastic_sheet" },
+ { "basic_materials:plastic_sheet", "basic_materials:plastic_sheet", "basic_materials:plastic_sheet" },
},
})
@@ -376,8 +107,8 @@ minetest.register_craft( {
output = "homedecor:flower_pot_black",
recipe = {
{ "dye:black", "dye:black", "dye:black" },
- { "homedecor:plastic_sheeting", "default:dirt", "homedecor:plastic_sheeting" },
- { "homedecor:plastic_sheeting", "homedecor:plastic_sheeting", "homedecor:plastic_sheeting" },
+ { "basic_materials:plastic_sheet", "default:dirt", "basic_materials:plastic_sheet" },
+ { "basic_materials:plastic_sheet", "basic_materials:plastic_sheet", "basic_materials:plastic_sheet" },
},
})
@@ -387,8 +118,8 @@ minetest.register_craft( {
output = "homedecor:projection_screen 3",
recipe = {
{ "", "default:glass", "" },
- { "homedecor:plastic_sheeting", "homedecor:plastic_sheeting", "homedecor:plastic_sheeting" },
- { "homedecor:plastic_sheeting", "homedecor:plastic_sheeting", "homedecor:plastic_sheeting" },
+ { "basic_materials:plastic_sheet", "basic_materials:plastic_sheet", "basic_materials:plastic_sheet" },
+ { "basic_materials:plastic_sheet", "basic_materials:plastic_sheet", "basic_materials:plastic_sheet" },
},
})
@@ -421,10 +152,6 @@ minetest.register_craft( {
},
})
-
--- =======================================================
--- Items/recipes not requiring smelting of anything new
-
minetest.register_craft( {
output = "homedecor:glass_table_small_round_b 15",
recipe = {
@@ -500,7 +227,7 @@ minetest.register_craft( {
recipe = {
{ "building_blocks:gravel_spread", "dye:black", "building_blocks:gravel_spread" },
{ "group:sand", "dye:black", "group:sand" },
- { "homedecor:plastic_sheeting", "homedecor:plastic_sheeting", "homedecor:plastic_sheeting" },
+ { "basic_materials:plastic_sheet", "basic_materials:plastic_sheet", "basic_materials:plastic_sheet" },
},
})
@@ -677,9 +404,9 @@ minetest.register_craft( {
minetest.register_craft( {
output = "homedecor:table_legs_brass 3",
recipe = {
- { "", "technic:brass_ingot", "" },
- { "", "technic:brass_ingot", "" },
- { "technic:brass_ingot", "technic:brass_ingot", "technic:brass_ingot" }
+ { "", "basic_materials:brass_ingot", "" },
+ { "", "basic_materials:brass_ingot", "" },
+ { "basic_materials:brass_ingot", "basic_materials:brass_ingot", "basic_materials:brass_ingot" }
},
})
@@ -703,9 +430,9 @@ minetest.register_craft({
minetest.register_craft( {
output = "homedecor:pole_brass 4",
recipe = {
- { "", "technic:brass_ingot", "" },
- { "", "technic:brass_ingot", "" },
- { "", "technic:brass_ingot", "" }
+ { "", "basic_materials:brass_ingot", "" },
+ { "", "basic_materials:brass_ingot", "" },
+ { "", "basic_materials:brass_ingot", "" }
},
})
@@ -721,37 +448,37 @@ minetest.register_craft( {
-- Home electronics
minetest.register_craft( {
- output = "homedecor:ic 4",
+ output = "basic_materials:ic 4",
recipe = {
- { "mesecons_materials:silicon", "mesecons_materials:silicon" },
- { "mesecons_materials:silicon", "default:copper_ingot" },
+ { "basic_materials:silicon", "basic_materials:silicon" },
+ { "basic_materials:silicon", "default:copper_ingot" },
},
})
minetest.register_craft( {
output = "homedecor:television",
recipe = {
- { "homedecor:plastic_sheeting", "homedecor:plastic_sheeting", "homedecor:plastic_sheeting" },
- { "homedecor:plastic_sheeting", "moreblocks:glow_glass", "homedecor:plastic_sheeting" },
- { "homedecor:ic", "homedecor:ic", "homedecor:ic" },
+ { "basic_materials:plastic_sheet", "basic_materials:plastic_sheet", "basic_materials:plastic_sheet" },
+ { "basic_materials:plastic_sheet", "moreblocks:glow_glass", "basic_materials:plastic_sheet" },
+ { "basic_materials:ic", "basic_materials:ic", "basic_materials:ic" },
},
})
minetest.register_craft( {
output = "homedecor:television",
recipe = {
- { "homedecor:plastic_sheeting", "homedecor:plastic_sheeting", "homedecor:plastic_sheeting" },
- { "homedecor:plastic_sheeting", "default:glass", "homedecor:plastic_sheeting" },
- { "homedecor:ic", "homedecor:power_crystal", "homedecor:ic" },
+ { "basic_materials:plastic_sheet", "basic_materials:plastic_sheet", "basic_materials:plastic_sheet" },
+ { "basic_materials:plastic_sheet", "default:glass", "basic_materials:plastic_sheet" },
+ { "basic_materials:ic", "basic_materials:energy_crystal_simple", "basic_materials:ic" },
},
})
minetest.register_craft( {
output = "homedecor:stereo",
recipe = {
- { "homedecor:plastic_sheeting", "homedecor:plastic_sheeting", "homedecor:plastic_sheeting" },
- { "homedecor:plastic_sheeting", "homedecor:ic", "homedecor:plastic_sheeting" },
- { "default:steel_ingot", "homedecor:ic", "default:steel_ingot" },
+ { "basic_materials:plastic_sheet", "basic_materials:plastic_sheet", "basic_materials:plastic_sheet" },
+ { "basic_materials:plastic_sheet", "basic_materials:ic", "basic_materials:plastic_sheet" },
+ { "default:steel_ingot", "basic_materials:ic", "default:steel_ingot" },
},
})
@@ -835,7 +562,7 @@ minetest.register_craft( {
output = "homedecor:speaker_driver 2",
recipe = {
{ "", "default:steel_ingot", "" },
- { "default:paper", "homedecor:copper_wire", "default:iron_lump" },
+ { "default:paper", "basic_materials:copper_wire", "default:iron_lump" },
{ "", "default:steel_ingot", "" },
},
})
@@ -1017,18 +744,18 @@ minetest.register_craft({
minetest.register_craft({
output = "homedecor:oven_steel",
recipe = {
- {"homedecor:heating_element", "default:steel_ingot", "homedecor:heating_element", },
+ {"basic_materials:heating_element", "default:steel_ingot", "basic_materials:heating_element", },
{"default:steel_ingot", "moreblocks:iron_glass", "default:steel_ingot", },
- {"default:steel_ingot", "homedecor:heating_element", "default:steel_ingot", },
+ {"default:steel_ingot", "basic_materials:heating_element", "default:steel_ingot", },
}
})
minetest.register_craft({
output = "homedecor:oven_steel",
recipe = {
- {"homedecor:heating_element", "default:steel_ingot", "homedecor:heating_element", },
+ {"basic_materials:heating_element", "default:steel_ingot", "basic_materials:heating_element", },
{"default:steel_ingot", "default:glass", "default:steel_ingot", },
- {"default:steel_ingot", "homedecor:heating_element", "default:steel_ingot", },
+ {"default:steel_ingot", "basic_materials:heating_element", "default:steel_ingot", },
}
})
@@ -1046,8 +773,8 @@ minetest.register_craft({
output = "homedecor:microwave_oven 2",
recipe = {
{"default:steel_ingot", "default:steel_ingot", "default:steel_ingot", },
- {"default:steel_ingot", "moreblocks:iron_glass", "homedecor:ic", },
- {"default:steel_ingot", "default:copper_ingot", "homedecor:power_crystal", },
+ {"default:steel_ingot", "moreblocks:iron_glass", "basic_materials:ic", },
+ {"default:steel_ingot", "default:copper_ingot", "basic_materials:energy_crystal_simple", },
}
})
@@ -1055,8 +782,8 @@ minetest.register_craft({
output = "homedecor:microwave_oven 2",
recipe = {
{"default:steel_ingot", "default:steel_ingot", "default:steel_ingot", },
- {"default:steel_ingot", "default:glass", "homedecor:ic", },
- {"default:steel_ingot", "default:copper_ingot", "homedecor:power_crystal", },
+ {"default:steel_ingot", "default:glass", "basic_materials:ic", },
+ {"default:steel_ingot", "default:copper_ingot", "basic_materials:energy_crystal_simple", },
}
})
@@ -1152,7 +879,7 @@ minetest.register_craft({
output = "homedecor:candle_thin 4",
recipe = {
{"farming:string" },
- {"homedecor:paraffin" }
+ {"basic_materials:paraffin" }
}
})
@@ -1160,8 +887,8 @@ minetest.register_craft({
output = "homedecor:candle 2",
recipe = {
{"farming:string" },
- {"homedecor:paraffin" },
- {"homedecor:paraffin" }
+ {"basic_materials:paraffin" },
+ {"basic_materials:paraffin" }
}
})
@@ -1188,7 +915,7 @@ minetest.register_craft({
recipe = {
{""},
{"homedecor:candle_thin"},
- {"technic:brass_ingot"},
+ {"basic_materials:brass_ingot"},
}
})
@@ -1197,7 +924,7 @@ minetest.register_craft({
recipe = {
{ "", "vessels:glass_bottle", "" },
{ "", "farming:string", "" },
- { "default:steel_ingot", "homedecor:oil_extract", "default:steel_ingot" }
+ { "default:steel_ingot", "basic_materials:oil_extract", "default:steel_ingot" }
}
})
@@ -1206,7 +933,7 @@ minetest.register_craft({
recipe = {
{ "", "vessels:glass_bottle", "" },
{ "", "farming:string", "" },
- { "default:iron_lump", "homedecor:oil_extract", "default:iron_lump" }
+ { "default:iron_lump", "basic_materials:oil_extract", "default:iron_lump" }
}
})
@@ -1251,7 +978,7 @@ else
recipe = {
{ "dye:black", "dye:yellow", "dye:black" },
{ "group:stick", "building_blocks:woodglass", "group:stick" },
- { "group:stick", "homedecor:power_crystal", "group:stick" }
+ { "group:stick", "basic_materials:energy_crystal_simple", "group:stick" }
},
})
@@ -1283,7 +1010,7 @@ end
minetest.register_craft({
output = "homedecor:glowlight_half 6",
recipe = {
- { "default:glass", "homedecor:power_crystal", "default:glass", },
+ { "default:glass", "basic_materials:energy_crystal_simple", "default:glass", },
}
})
@@ -1345,7 +1072,7 @@ minetest.register_craft({
recipe = {
{ "dye:white" },
{ "default:glass" },
- { "homedecor:power_crystal" },
+ { "basic_materials:energy_crystal_simple" },
}
})
@@ -1381,7 +1108,7 @@ minetest.register_craft({
output = "homedecor:plasma_lamp",
recipe = {
{"", "default:glass", ""},
- {"default:glass", "homedecor:power_crystal", "default:glass"},
+ {"default:glass", "basic_materials:energy_crystal_simple", "default:glass"},
{"", "default:glass", ""}
}
})
@@ -1391,7 +1118,7 @@ minetest.register_craft({
recipe = {
{"", "default:glass", ""},
{"default:glass", "default:copper_ingot", "default:glass"},
- {"homedecor:plastic_sheeting", "homedecor:power_crystal", "homedecor:plastic_sheeting"}
+ {"basic_materials:plastic_sheet", "basic_materials:energy_crystal_simple", "basic_materials:plastic_sheet"}
}
})
@@ -1401,8 +1128,8 @@ minetest.register_craft({
minetest.register_craft( {
output = "homedecor:fence_brass 6",
recipe = {
- { "technic:brass_ingot", "technic:brass_ingot", "technic:brass_ingot" },
- { "technic:brass_ingot", "technic:brass_ingot", "technic:brass_ingot" },
+ { "basic_materials:brass_ingot", "basic_materials:brass_ingot", "basic_materials:brass_ingot" },
+ { "basic_materials:brass_ingot", "basic_materials:brass_ingot", "basic_materials:brass_ingot" },
},
})
@@ -1533,9 +1260,9 @@ minetest.register_craft( {
minetest.register_craft( {
output = "homedecor:fence_barbed_wire 6",
recipe = {
- { "group:stick", "homedecor:steel_wire", "group:stick" },
+ { "group:stick", "basic_materials:steel_wire", "group:stick" },
{ "group:stick", "", "group:stick" },
- { "group:stick", "homedecor:steel_wire", "group:stick" }
+ { "group:stick", "basic_materials:steel_wire", "group:stick" }
},
})
@@ -1558,8 +1285,8 @@ minetest.register_craft( {
output = "homedecor:fence_chainlink 9",
recipe = {
{ "default:steel_ingot", "default:steel_ingot", "default:steel_ingot" },
- { "homedecor:steel_wire", "homedecor:steel_wire", "default:steel_ingot" },
- { "homedecor:steel_wire", "homedecor:steel_wire", "default:steel_ingot" }
+ { "basic_materials:steel_wire", "basic_materials:steel_wire", "default:steel_ingot" },
+ { "basic_materials:steel_wire", "basic_materials:steel_wire", "default:steel_ingot" }
},
})
@@ -1723,17 +1450,6 @@ minetest.register_craft( {
},
})
--- Solid glass with metal handle
-
-minetest.register_craft( {
- output = "homedecor:door_glass_left 2",
- recipe = {
- { "default:glass", "default:glass" },
- { "default:glass", "default:steel_ingot" },
- { "default:glass", "default:glass" },
- },
-})
-
-- Closet doors
-- oak
@@ -1787,7 +1503,7 @@ minetest.register_craft( {
output = "homedecor:door_bedroom_left",
recipe = {
{ "dye:white", "dye:white", "" },
- { "homedecor:door_wood_plain_left", "technic:brass_ingot", "" },
+ { "homedecor:door_wood_plain_left", "basic_materials:brass_ingot", "" },
{ "", "", "" },
},
})
@@ -1798,7 +1514,7 @@ minetest.register_craft( {
output = "homedecor:door_woodglass_left",
recipe = {
{ "group:wood", "default:glass", "" },
- { "group:wood", "default:glass", "technic:brass_ingot" },
+ { "group:wood", "default:glass", "basic_materials:brass_ingot" },
{ "group:wood", "group:wood", "" },
},
})
@@ -1819,16 +1535,16 @@ minetest.register_craft( {
minetest.register_craft( {
output = "homedecor:washing_machine",
recipe = {
- { "default:steel_ingot", "default:steel_ingot", "homedecor:ic" },
+ { "default:steel_ingot", "default:steel_ingot", "basic_materials:ic" },
{ "default:steel_ingot", "bucket:bucket_water", "default:steel_ingot" },
- { "default:steel_ingot", "homedecor:motor", "default:steel_ingot" }
+ { "default:steel_ingot", "basic_materials:motor", "default:steel_ingot" }
},
})
minetest.register_craft( {
output = "homedecor:washing_machine",
recipe = {
- { "default:steel_ingot", "default:steel_ingot", "homedecor:ic" },
+ { "default:steel_ingot", "default:steel_ingot", "basic_materials:ic" },
{ "default:steel_ingot", "bucket:bucket_water", "default:steel_ingot" },
{ "default:steel_ingot", "technic:motor", "default:steel_ingot" }
},
@@ -1837,18 +1553,18 @@ minetest.register_craft( {
minetest.register_craft( {
output = "homedecor:dryer",
recipe = {
- { "default:steel_ingot", "default:steel_ingot", "homedecor:ic" },
- { "default:steel_ingot", "bucket:bucket_empty", "homedecor:motor" },
- { "default:steel_ingot", "homedecor:heating_element", "default:steel_ingot" }
+ { "default:steel_ingot", "default:steel_ingot", "basic_materials:ic" },
+ { "default:steel_ingot", "bucket:bucket_empty", "basic_materials:motor" },
+ { "default:steel_ingot", "basic_materials:heating_element", "default:steel_ingot" }
},
})
minetest.register_craft( {
output = "homedecor:dryer",
recipe = {
- { "default:steel_ingot", "default:steel_ingot", "homedecor:ic" },
+ { "default:steel_ingot", "default:steel_ingot", "basic_materials:ic" },
{ "default:steel_ingot", "bucket:bucket_empty", "technic:motor" },
- { "default:steel_ingot", "homedecor:heating_element", "default:steel_ingot" }
+ { "default:steel_ingot", "basic_materials:heating_element", "default:steel_ingot" }
},
})
@@ -1866,18 +1582,18 @@ minetest.register_craft( {
minetest.register_craft( {
output = "homedecor:dishwasher",
recipe = {
- { "homedecor:ic", "homedecor:fence_chainlink", "default:steel_ingot", },
- { "default:steel_ingot", "homedecor:shower_head", "homedecor:motor" },
- { "default:steel_ingot", "homedecor:heating_element", "bucket:bucket_water" }
+ { "basic_materials:ic", "homedecor:fence_chainlink", "default:steel_ingot", },
+ { "default:steel_ingot", "homedecor:shower_head", "basic_materials:motor" },
+ { "default:steel_ingot", "basic_materials:heating_element", "bucket:bucket_water" }
},
})
minetest.register_craft( {
output = "homedecor:dishwasher",
recipe = {
- { "homedecor:ic", "homedecor:fence_chainlink", "default:steel_ingot", },
+ { "basic_materials:ic", "homedecor:fence_chainlink", "default:steel_ingot", },
{ "default:steel_ingot", "homedecor:shower_head", "technic:motor" },
- { "default:steel_ingot", "homedecor:heating_element", "bucket:bucket_water" }
+ { "default:steel_ingot", "basic_materials:heating_element", "bucket:bucket_water" }
},
})
@@ -2051,7 +1767,7 @@ minetest.register_craft({
minetest.register_craft({
output = "homedecor:fishtank",
recipe = {
- { "homedecor:plastic_sheeting", "homedecor:glowlight_small_cube", "homedecor:plastic_sheeting" },
+ { "basic_materials:plastic_sheet", "homedecor:glowlight_small_cube", "basic_materials:plastic_sheet" },
{ "default:glass", "bucket:bucket_water", "default:glass" },
{ "default:glass", "building_blocks:gravel_spread", "default:glass" },
},
@@ -2131,9 +1847,9 @@ minetest.register_craft({
minetest.register_craft({
output = "homedecor:analog_clock_plastic 2",
recipe = {
- { "homedecor:plastic_sheeting", "dye:black", "homedecor:plastic_sheeting" },
- { "homedecor:plastic_sheeting", "homedecor:ic", "homedecor:plastic_sheeting" },
- { "homedecor:plastic_sheeting", "dye:black", "homedecor:plastic_sheeting" },
+ { "basic_materials:plastic_sheet", "dye:black", "basic_materials:plastic_sheet" },
+ { "basic_materials:plastic_sheet", "basic_materials:ic", "basic_materials:plastic_sheet" },
+ { "basic_materials:plastic_sheet", "dye:black", "basic_materials:plastic_sheet" },
},
})
@@ -2141,7 +1857,7 @@ minetest.register_craft({
output = "homedecor:analog_clock_wood 2",
recipe = {
{ "group:stick", "dye:black", "group:stick" },
- { "group:stick", "homedecor:ic", "group:stick" },
+ { "group:stick", "basic_materials:ic", "group:stick" },
{ "group:stick", "dye:black", "group:stick" },
},
})
@@ -2149,18 +1865,18 @@ minetest.register_craft({
minetest.register_craft({
output = "homedecor:digital_clock 2",
recipe = {
- { "homedecor:plastic_sheeting", "default:paper", "homedecor:plastic_sheeting" },
- { "homedecor:plastic_sheeting", "homedecor:ic", "homedecor:plastic_sheeting" },
- { "homedecor:plastic_sheeting", "homedecor:power_crystal", "homedecor:plastic_sheeting" },
+ { "basic_materials:plastic_sheet", "default:paper", "basic_materials:plastic_sheet" },
+ { "basic_materials:plastic_sheet", "basic_materials:ic", "basic_materials:plastic_sheet" },
+ { "basic_materials:plastic_sheet", "basic_materials:energy_crystal_simple", "basic_materials:plastic_sheet" },
},
})
minetest.register_craft({
output = "homedecor:alarm_clock",
recipe = {
- { "homedecor:plastic_sheeting", "homedecor:speaker_driver", "homedecor:plastic_sheeting" },
- { "homedecor:plastic_sheeting", "homedecor:digital_clock", "homedecor:plastic_sheeting" },
- { "homedecor:plastic_sheeting", "homedecor:power_crystal", "homedecor:plastic_sheeting" },
+ { "basic_materials:plastic_sheet", "homedecor:speaker_driver", "basic_materials:plastic_sheet" },
+ { "basic_materials:plastic_sheet", "homedecor:digital_clock", "basic_materials:plastic_sheet" },
+ { "basic_materials:plastic_sheet", "basic_materials:energy_crystal_simple", "basic_materials:plastic_sheet" },
},
})
@@ -2168,8 +1884,8 @@ minetest.register_craft({
output = "homedecor:air_conditioner",
recipe = {
{ "default:steel_ingot", "building_blocks:grate", "default:steel_ingot" },
- { "default:steel_ingot", "homedecor:fan_blades", "homedecor:motor" },
- { "default:steel_ingot", "homedecor:motor", "default:steel_ingot" },
+ { "default:steel_ingot", "homedecor:fan_blades", "basic_materials:motor" },
+ { "default:steel_ingot", "basic_materials:motor", "default:steel_ingot" },
},
})
@@ -2185,7 +1901,7 @@ minetest.register_craft({
minetest.register_craft({
output = "homedecor:ceiling_fan",
recipe = {
- { "homedecor:motor" },
+ { "basic_materials:motor" },
{ "homedecor:fan_blades" },
{ "homedecor:glowlight_small_cube" }
}
@@ -2259,27 +1975,27 @@ minetest.register_craft({
minetest.register_craft({
output = "homedecor:vcr 2",
recipe = {
- { "homedecor:ic", "default:steel_ingot", "homedecor:plastic_sheeting" },
+ { "basic_materials:ic", "default:steel_ingot", "basic_materials:plastic_sheet" },
{ "default:iron_lump", "default:iron_lump", "default:iron_lump" },
- { "homedecor:plastic_sheeting", "", "homedecor:plastic_sheeting" },
+ { "basic_materials:plastic_sheet", "", "basic_materials:plastic_sheet" },
},
})
minetest.register_craft({
output = "homedecor:dvd_player 2",
recipe = {
- { "", "homedecor:plastic_sheeting", "" },
- { "default:obsidian_glass", "homedecor:motor", "homedecor:motor" },
- { "default:mese_crystal_fragment", "homedecor:ic", "homedecor:power_crystal" },
+ { "", "basic_materials:plastic_sheet", "" },
+ { "default:obsidian_glass", "basic_materials:motor", "basic_materials:motor" },
+ { "default:mese_crystal_fragment", "basic_materials:ic", "basic_materials:energy_crystal_simple" },
},
})
minetest.register_craft({
output = "homedecor:dvd_player 2",
recipe = {
- { "", "homedecor:plastic_sheeting", "" },
+ { "", "basic_materials:plastic_sheet", "" },
{ "default:obsidian_glass", "technic:motor", "technic:motor" },
- { "default:mese_crystal_fragment", "homedecor:ic", "homedecor:power_crystal" },
+ { "default:mese_crystal_fragment", "basic_materials:ic", "basic_materials:energy_crystal_simple" },
},
})
@@ -2295,18 +2011,18 @@ minetest.register_craft({
minetest.register_craft({
output = "homedecor:blinds_thin",
recipe = {
- { "group:stick", "homedecor:plastic_sheeting", "group:stick" },
- { "farming:string", "homedecor:plastic_strips", "" },
- { "", "homedecor:plastic_strips", "" },
+ { "group:stick", "basic_materials:plastic_sheet", "group:stick" },
+ { "farming:string", "basic_materials:plastic_strip", "" },
+ { "", "basic_materials:plastic_strip", "" },
},
})
minetest.register_craft({
output = "homedecor:blinds_thick",
recipe = {
- { "group:stick", "homedecor:plastic_sheeting", "group:stick" },
- { "farming:string", "homedecor:plastic_strips", "homedecor:plastic_strips" },
- { "", "homedecor:plastic_strips", "homedecor:plastic_strips" },
+ { "group:stick", "basic_materials:plastic_sheet", "group:stick" },
+ { "farming:string", "basic_materials:plastic_strip", "basic_materials:plastic_strip" },
+ { "", "basic_materials:plastic_strip", "basic_materials:plastic_strip" },
},
})
@@ -2322,7 +2038,7 @@ minetest.register_craft( {
minetest.register_craft( {
output = "homedecor:desk_fan",
recipe = {
- {"default:steel_ingot", "homedecor:fan_blades", "homedecor:motor"},
+ {"default:steel_ingot", "homedecor:fan_blades", "basic_materials:motor"},
{"", "default:steel_ingot", ""}
},
})
@@ -2330,18 +2046,18 @@ minetest.register_craft( {
minetest.register_craft( {
output = "homedecor:space_heater",
recipe = {
- {"homedecor:plastic_sheeting", "homedecor:heating_element", "homedecor:plastic_sheeting"},
- {"homedecor:plastic_sheeting", "homedecor:fan_blades", "homedecor:motor"},
- {"homedecor:plastic_sheeting", "homedecor:heating_element", "homedecor:plastic_sheeting"}
+ {"basic_materials:plastic_sheet", "basic_materials:heating_element", "basic_materials:plastic_sheet"},
+ {"basic_materials:plastic_sheet", "homedecor:fan_blades", "basic_materials:motor"},
+ {"basic_materials:plastic_sheet", "basic_materials:heating_element", "basic_materials:plastic_sheet"}
},
})
minetest.register_craft( {
output = "homedecor:radiator",
recipe = {
- { "default:steel_ingot", "homedecor:heating_element", "default:steel_ingot" },
- { "homedecor:ic", "homedecor:heating_element", "" },
- { "default:steel_ingot", "homedecor:heating_element", "default:steel_ingot" }
+ { "default:steel_ingot", "basic_materials:heating_element", "default:steel_ingot" },
+ { "basic_materials:ic", "basic_materials:heating_element", "" },
+ { "default:steel_ingot", "basic_materials:heating_element", "default:steel_ingot" }
},
})
@@ -2409,18 +2125,18 @@ unifieddyes.register_color_craft({
minetest.register_craft( {
output = "homedecor:power_outlet",
recipe = {
- {"homedecor:plastic_sheeting", "homedecor:copper_strip"},
- {"homedecor:plastic_sheeting", ""},
- {"homedecor:plastic_sheeting", "homedecor:copper_strip"}
+ {"basic_materials:plastic_sheet", "basic_materials:copper_strip"},
+ {"basic_materials:plastic_sheet", ""},
+ {"basic_materials:plastic_sheet", "basic_materials:copper_strip"}
},
})
minetest.register_craft( {
output = "homedecor:light_switch",
recipe = {
- {"", "homedecor:plastic_sheeting", "homedecor:copper_strip"},
- {"homedecor:plastic_sheeting", "homedecor:plastic_sheeting", "homedecor:copper_strip"},
- {"", "homedecor:plastic_sheeting", "homedecor:copper_strip"}
+ {"", "basic_materials:plastic_sheet", "basic_materials:copper_strip"},
+ {"basic_materials:plastic_sheet", "basic_materials:plastic_sheet", "basic_materials:copper_strip"},
+ {"", "basic_materials:plastic_sheet", "basic_materials:copper_strip"}
},
})
@@ -2504,7 +2220,7 @@ minetest.register_craft( {
minetest.register_craft( {
output = "homedecor:trash_can 3",
recipe = {
- { "homedecor:steel_wire", "", "homedecor:steel_wire" },
+ { "basic_materials:steel_wire", "", "basic_materials:steel_wire" },
{ "default:steel_ingot", "default:steel_ingot", "default:steel_ingot" }
},
})
@@ -2512,8 +2228,8 @@ minetest.register_craft( {
minetest.register_craft( {
output = "homedecor:telephone",
recipe = {
- { "homedecor:speaker_driver", "homedecor:copper_wire", "homedecor:speaker_driver" },
- { "homedecor:plastic_sheeting", "default:steel_ingot", "homedecor:plastic_sheeting" },
+ { "homedecor:speaker_driver", "basic_materials:copper_wire", "homedecor:speaker_driver" },
+ { "basic_materials:plastic_sheet", "default:steel_ingot", "basic_materials:plastic_sheet" },
{ "default:steel_ingot", "default:steel_ingot", "default:steel_ingot" }
},
})
@@ -2555,7 +2271,7 @@ minetest.register_craft( {
minetest.register_craft( {
output = "homedecor:doorbell",
recipe = {
- { "homedecor:light_switch", "homedecor:power_crystal", "homedecor:speaker_driver" }
+ { "homedecor:light_switch", "basic_materials:energy_crystal_simple", "homedecor:speaker_driver" }
},
})
@@ -2600,7 +2316,7 @@ minetest.register_craft( {
output = "homedecor:cutlery_set",
recipe = {
{ "", "vessels:drinking_glass", "" },
- { "homedecor:steel_strip", "building_blocks:slab_marble", "homedecor:steel_strip" },
+ { "basic_materials:steel_strip", "building_blocks:slab_marble", "basic_materials:steel_strip" },
},
})
@@ -2608,7 +2324,7 @@ minetest.register_craft( {
output = "homedecor:cutlery_set",
recipe = {
{ "", "vessels:drinking_glass", "" },
- { "homedecor:steel_strip", "building_blocks:micro_marble_1", "homedecor:steel_strip" },
+ { "basic_materials:steel_strip", "building_blocks:micro_marble_1", "basic_materials:steel_strip" },
},
})
@@ -2692,71 +2408,38 @@ minetest.register_craft( {
},
})
-if not minetest.get_modpath("glooptest") then
-
- minetest.register_craft({
- output = "glooptest:chainlink 12",
- recipe = {
- {"", "default:steel_ingot", "default:steel_ingot"},
- { "default:steel_ingot", "", "default:steel_ingot" },
- { "default:steel_ingot", "default:steel_ingot", "" },
- },
- })
-
-end
-
-minetest.register_alias("homedecor:chainlink_steel", "glooptest:chainlink")
-
-minetest.register_craft({
- output = "homedecor:chains 4",
- recipe = {
- { "default:steel_ingot", "", "default:steel_ingot"},
- { "glooptest:chainlink", "", "glooptest:chainlink" },
- { "glooptest:chainlink", "", "glooptest:chainlink" },
- },
-})
-
-minetest.register_craft({
- output = "homedecor:chainlink_brass 12",
- recipe = {
- {"", "technic:brass_ingot", "technic:brass_ingot"},
- { "technic:brass_ingot", "", "technic:brass_ingot" },
- { "technic:brass_ingot", "technic:brass_ingot", "" },
- },
-})
-
minetest.register_craft({
output = "homedecor:coffee_maker",
recipe = {
- {"homedecor:plastic_sheeting", "bucket:bucket_water", "homedecor:plastic_sheeting"},
- {"homedecor:plastic_sheeting", "default:glass", "homedecor:plastic_sheeting"},
- {"homedecor:plastic_sheeting", "homedecor:heating_element", "homedecor:plastic_sheeting"}
+ {"basic_materials:plastic_sheet", "bucket:bucket_water", "basic_materials:plastic_sheet"},
+ {"basic_materials:plastic_sheet", "default:glass", "basic_materials:plastic_sheet"},
+ {"basic_materials:plastic_sheet", "basic_materials:heating_element", "basic_materials:plastic_sheet"}
},
})
minetest.register_craft({
output = "homedecor:dartboard",
recipe = {
- {"dye:black", "homedecor:plastic_sheeting", "dye:white"},
- {"homedecor:plastic_sheeting", "homedecor:plastic_sheeting", "homedecor:plastic_sheeting"},
- {"dye:dark_green", "homedecor:plastic_sheeting", "dye:red"}
+ {"dye:black", "basic_materials:plastic_sheet", "dye:white"},
+ {"basic_materials:plastic_sheet", "basic_materials:plastic_sheet", "basic_materials:plastic_sheet"},
+ {"dye:dark_green", "basic_materials:plastic_sheet", "dye:red"}
},
})
minetest.register_craft({
output = "homedecor:piano",
recipe = {
- { "", "homedecor:steel_wire", "building_blocks:hardwood" },
- { "homedecor:plastic_strips", "homedecor:steel_wire", "building_blocks:hardwood" },
- { "technic:brass_ingot", "default:steelblock", "building_blocks:hardwood" }
+ { "", "basic_materials:steel_wire", "building_blocks:hardwood" },
+ { "basic_materials:plastic_strip", "basic_materials:steel_wire", "building_blocks:hardwood" },
+ { "basic_materials:brass_ingot", "default:steelblock", "building_blocks:hardwood" }
},
})
minetest.register_craft({
output = "homedecor:toaster",
recipe = {
- { "default:steel_ingot", "homedecor:heating_element", "default:steel_ingot" },
- { "default:steel_ingot", "homedecor:heating_element", "default:steel_ingot" }
+ { "default:steel_ingot", "basic_materials:heating_element", "default:steel_ingot" },
+ { "default:steel_ingot", "basic_materials:heating_element", "default:steel_ingot" }
},
})
@@ -2791,7 +2474,7 @@ minetest.register_craft({
output = "homedecor:office_chair_upscale",
recipe = {
{ "dye:black", "building_blocks:sticks", "group:wool" },
- { "homedecor:plastic_sheeting", "group:wool", "default:steel_ingot" },
+ { "basic_materials:plastic_sheet", "group:wool", "default:steel_ingot" },
{ "building_blocks:sticks", "homedecor:pole_wrought_iron", "building_blocks:sticks" }
},
})
@@ -2816,8 +2499,8 @@ minetest.register_craft({
output = "homedecor:grandfather_clock",
recipe = {
{ "building_blocks:slab_hardwood","homedecor:analog_clock_wood","building_blocks:slab_hardwood" },
- { "building_blocks:slab_hardwood","technic:brass_ingot","building_blocks:slab_hardwood" },
- { "building_blocks:slab_hardwood","technic:brass_ingot","building_blocks:slab_hardwood" }
+ { "building_blocks:slab_hardwood","basic_materials:brass_ingot","building_blocks:slab_hardwood" },
+ { "building_blocks:slab_hardwood","basic_materials:brass_ingot","building_blocks:slab_hardwood" }
},
})
@@ -2842,7 +2525,7 @@ minetest.register_craft({
minetest.register_craft({
output = "homedecor:copper_pans",
recipe = {
- { "homedecor:copper_strip","","homedecor:copper_strip" },
+ { "basic_materials:copper_strip","","basic_materials:copper_strip" },
{ "default:copper_ingot","","default:copper_ingot" },
{ "default:copper_ingot","","default:copper_ingot" }
},
@@ -3033,8 +2716,8 @@ minetest.register_craft({
output = "homedecor:desk_lamp 2",
recipe = {
{ "", "default:steel_ingot", "homedecor:glowlight_small_cube" },
- { "", "homedecor:steel_strip", "" },
- { "homedecor:plastic_sheeting", "homedecor:copper_wire", "homedecor:plastic_sheeting" },
+ { "", "basic_materials:steel_strip", "" },
+ { "basic_materials:plastic_sheet", "basic_materials:copper_wire", "basic_materials:plastic_sheet" },
},
})
@@ -3079,8 +2762,8 @@ minetest.register_craft({
minetest.register_craft({
output = "homedecor:desk_globe",
recipe = {
- { "group:stick", "homedecor:plastic_sheeting", "dye:green" },
- { "group:stick", "homedecor:plastic_sheeting", "homedecor:plastic_sheeting" },
+ { "group:stick", "basic_materials:plastic_sheet", "dye:green" },
+ { "group:stick", "basic_materials:plastic_sheet", "basic_materials:plastic_sheet" },
{ "group:stick", "stairs:slab_wood", "dye:blue" }
},
})
@@ -3088,8 +2771,8 @@ minetest.register_craft({
minetest.register_craft({
output = "homedecor:desk_globe",
recipe = {
- { "group:stick", "homedecor:plastic_sheeting", "dye:green" },
- { "group:stick", "homedecor:plastic_sheeting", "homedecor:plastic_sheeting" },
+ { "group:stick", "basic_materials:plastic_sheet", "dye:green" },
+ { "group:stick", "basic_materials:plastic_sheet", "basic_materials:plastic_sheet" },
{ "group:stick", "moreblocks:slab_wood", "dye:blue" }
},
})
@@ -3097,7 +2780,7 @@ minetest.register_craft({
minetest.register_craft({
output = "homedecor:tool_cabinet",
recipe = {
- { "homedecor:motor", "default:axe_steel", "default:pick_steel" },
+ { "basic_materials:motor", "default:axe_steel", "default:pick_steel" },
{ "default:steel_ingot", "homedecor:drawer_small", "default:steel_ingot" },
{ "default:steel_ingot", "homedecor:drawer_small", "default:steel_ingot" }
},
@@ -3107,25 +2790,25 @@ minetest.register_craft({
output = "homedecor:bathroom_set",
recipe = {
{ "", "homedecor:glass_table_small_round", "" },
- { "homedecor:plastic_sheeting", "homedecor:glass_table_small_round", "homedecor:plastic_sheeting" },
- { "group:stick", "homedecor:plastic_sheeting", "group:stick" }
+ { "basic_materials:plastic_sheet", "homedecor:glass_table_small_round", "basic_materials:plastic_sheet" },
+ { "group:stick", "basic_materials:plastic_sheet", "group:stick" }
},
})
minetest.register_craft({
output = "homedecor:trash_can_green",
recipe = {
- { "homedecor:plastic_sheeting", "", "homedecor:plastic_sheeting" },
- { "homedecor:plastic_sheeting", "dye:green", "homedecor:plastic_sheeting" },
- { "homedecor:plastic_sheeting", "homedecor:plastic_sheeting", "homedecor:plastic_sheeting" }
+ { "basic_materials:plastic_sheet", "", "basic_materials:plastic_sheet" },
+ { "basic_materials:plastic_sheet", "dye:green", "basic_materials:plastic_sheet" },
+ { "basic_materials:plastic_sheet", "basic_materials:plastic_sheet", "basic_materials:plastic_sheet" }
},
})
minetest.register_craft({
output = "homedecor:ceiling_lamp",
recipe = {
- { "", "technic:brass_ingot", ""},
- { "", "homedecor:chainlink_brass", ""},
+ { "", "basic_materials:brass_ingot", ""},
+ { "", "basic_materials:chainlink_brass", ""},
{ "default:glass", "homedecor:glowlight_small_cube", "default:glass"}
},
})
@@ -3133,7 +2816,7 @@ minetest.register_craft({
minetest.register_craft({
output = "homedecor:ceiling_lamp",
recipe = {
- { "", "chains:chain_top_brass", ""},
+ { "", "basic_materials:chain_steel_top_brass", ""},
{ "default:glass", "homedecor:glowlight_small_cube", "default:glass"}
},
})
@@ -3351,5 +3034,5 @@ unifieddyes.register_color_craft({
})
if (minetest.get_modpath("technic") and minetest.get_modpath("dye") and minetest.get_modpath("bees")) then
- technic.register_separating_recipe({ input = {"bees:wax 1"}, output = {"homedecor:oil_extract 2","dye:yellow 1"} })
+ technic.register_separating_recipe({ input = {"bees:wax 1"}, output = {"basic_materials:oil_extract 2","dye:yellow 1"} })
end