2018-12-12 13:20:22 +00:00
|
|
|
if minetest.get_modpath("basic_materials") == nil then
|
2018-12-12 13:46:19 +00:00
|
|
|
|
|
|
|
--------------
|
|
|
|
-- PLASTICS --
|
|
|
|
--------------
|
|
|
|
|
2018-12-12 13:20:22 +00:00
|
|
|
minetest.register_craftitem(":basic_materials:oil_extract", {
|
2018-06-21 08:09:01 +00:00
|
|
|
description = "Oil Extract",
|
2021-08-08 10:39:20 +00:00
|
|
|
inventory_image = "elepower_bm_oil_extract.png",
|
2018-06-21 08:09:01 +00:00
|
|
|
})
|
|
|
|
|
2018-12-12 13:20:22 +00:00
|
|
|
minetest.register_craftitem(":basic_materials:paraffin", {
|
2018-06-21 08:09:01 +00:00
|
|
|
description = "Unprocessed Paraffin",
|
2021-08-08 10:39:20 +00:00
|
|
|
inventory_image = "elepower_bm_paraffin.png",
|
2018-06-21 08:09:01 +00:00
|
|
|
})
|
|
|
|
|
2018-12-12 13:20:22 +00:00
|
|
|
minetest.register_alias("basic_materials:plastic_base", "basic_materials:paraffin")
|
2020-03-22 22:04:46 +00:00
|
|
|
minetest.register_alias("homedecor:plastic_base", "basic_materials:paraffin")
|
|
|
|
minetest.register_alias("homedecor:paraffin", "basic_materials:paraffin")
|
|
|
|
minetest.register_alias("homedecor:oil_extract", "basic_materials:oil_extract")
|
2021-08-08 10:39:20 +00:00
|
|
|
minetest.register_alias("homedecor:plastic_sheeting", "basic_materials:plastic_sheet")
|
|
|
|
minetest.register_alias("homedecor:plastic_strips", "basic_materials:plastic_strip")
|
|
|
|
minetest.register_alias("homedecor:empty_spool", "basic_materials:empty_spool")
|
2018-06-21 08:09:01 +00:00
|
|
|
|
2018-12-12 13:20:22 +00:00
|
|
|
minetest.register_craftitem(":basic_materials:plastic_sheet", {
|
2018-06-21 08:09:01 +00:00
|
|
|
description = "Plastic Sheet",
|
2021-08-08 10:39:20 +00:00
|
|
|
inventory_image = "elepower_bm_plastic_sheet.png",
|
|
|
|
})
|
|
|
|
|
|
|
|
minetest.register_craftitem(":basic_materials:plastic_strip", {
|
|
|
|
description = "Plastic Strips",
|
|
|
|
groups = { strip = 1 },
|
|
|
|
inventory_image = "elepower_bm_strip.png^[colorize:#ffffff:200",
|
|
|
|
})
|
|
|
|
|
|
|
|
minetest.register_craftitem(":basic_materials:empty_spool", {
|
|
|
|
description = "Empty wire spool",
|
|
|
|
inventory_image = "elepower_bm_empty_spool.png"
|
|
|
|
})
|
|
|
|
|
|
|
|
|
|
|
|
minetest.register_craft( {
|
|
|
|
output = "basic_materials:plastic_strip 9",
|
|
|
|
recipe = {
|
|
|
|
{ "basic_materials:plastic_sheet", "basic_materials:plastic_sheet", "basic_materials:plastic_sheet" }
|
|
|
|
},
|
|
|
|
})
|
|
|
|
|
|
|
|
minetest.register_craft( {
|
|
|
|
output = "basic_materials:empty_spool 3",
|
|
|
|
recipe = {
|
|
|
|
{ "basic_materials:plastic_sheet", "basic_materials:plastic_sheet", "basic_materials:plastic_sheet" },
|
|
|
|
{ "" , "basic_materials:plastic_sheet", "" },
|
|
|
|
{ "basic_materials:plastic_sheet", "basic_materials:plastic_sheet", "basic_materials:plastic_sheet" }
|
|
|
|
},
|
2018-06-21 08:09:01 +00:00
|
|
|
})
|
|
|
|
|
|
|
|
minetest.register_craft({
|
|
|
|
type = "shapeless",
|
2018-12-12 13:20:22 +00:00
|
|
|
output = "basic_materials:oil_extract 4",
|
2018-06-21 08:09:01 +00:00
|
|
|
recipe = {
|
|
|
|
"group:leaves",
|
|
|
|
"group:leaves",
|
|
|
|
"group:leaves",
|
|
|
|
"group:leaves",
|
|
|
|
"group:leaves",
|
|
|
|
"group:leaves"
|
|
|
|
}
|
|
|
|
})
|
|
|
|
|
|
|
|
minetest.register_craft({
|
|
|
|
type = "cooking",
|
2018-12-12 13:20:22 +00:00
|
|
|
output = "basic_materials:paraffin",
|
|
|
|
recipe = "basic_materials:oil_extract",
|
2018-06-21 08:09:01 +00:00
|
|
|
})
|
|
|
|
|
|
|
|
minetest.register_craft({
|
|
|
|
type = "cooking",
|
2018-12-12 13:20:22 +00:00
|
|
|
output = "basic_materials:plastic_sheet",
|
|
|
|
recipe = "basic_materials:paraffin",
|
2018-06-21 08:09:01 +00:00
|
|
|
})
|
|
|
|
|
|
|
|
minetest.register_craft({
|
|
|
|
type = "fuel",
|
2018-12-12 13:20:22 +00:00
|
|
|
recipe = "basic_materials:oil_extract",
|
2018-06-21 08:09:01 +00:00
|
|
|
burntime = 30,
|
|
|
|
})
|
|
|
|
|
|
|
|
minetest.register_craft({
|
|
|
|
type = "fuel",
|
2018-12-12 13:20:22 +00:00
|
|
|
recipe = "basic_materials:paraffin",
|
2018-06-21 08:09:01 +00:00
|
|
|
burntime = 30,
|
|
|
|
})
|
|
|
|
|
|
|
|
minetest.register_craft({
|
|
|
|
type = "fuel",
|
2018-12-12 13:20:22 +00:00
|
|
|
recipe = "basic_materials:plastic_sheet",
|
2018-06-21 08:09:01 +00:00
|
|
|
burntime = 30,
|
|
|
|
})
|
2018-12-12 13:46:19 +00:00
|
|
|
|
|
|
|
-----------------
|
|
|
|
-- COPPER WIRE --
|
|
|
|
-----------------
|
|
|
|
|
|
|
|
minetest.register_craftitem(":basic_materials:copper_wire", {
|
|
|
|
description = "Copper Wire",
|
2021-08-08 10:39:20 +00:00
|
|
|
inventory_image = "elepower_bm_copper_wire.png",
|
2018-12-12 13:46:19 +00:00
|
|
|
groups = {copper = 1, wire = 1, component = 1}
|
|
|
|
})
|
|
|
|
|
2021-08-08 10:39:20 +00:00
|
|
|
minetest.register_craft( {
|
|
|
|
output = "basic_materials:copper_wire 2",
|
|
|
|
type = "shapeless",
|
2018-12-12 13:46:19 +00:00
|
|
|
recipe = {
|
2021-08-08 10:39:20 +00:00
|
|
|
"default:copper_ingot",
|
|
|
|
"basic_materials:empty_spool",
|
|
|
|
"basic_materials:empty_spool",
|
|
|
|
},
|
2018-12-12 13:46:19 +00:00
|
|
|
})
|
|
|
|
|
|
|
|
-----------
|
|
|
|
-- MOTOR --
|
|
|
|
-----------
|
|
|
|
|
|
|
|
minetest.register_craftitem(":basic_materials:motor", {
|
|
|
|
description = "Motor",
|
2021-08-08 10:39:20 +00:00
|
|
|
inventory_image = "elepower_bm_motor.png",
|
2018-12-12 13:46:19 +00:00
|
|
|
groups = {motor = 1, component = 1}
|
|
|
|
})
|
|
|
|
|
|
|
|
minetest.register_craft({
|
|
|
|
output = "basic_materials:motor 3",
|
|
|
|
recipe = {
|
|
|
|
{"default:steel_ingot", "elepower_dynamics:wound_copper_coil", "default:steel_ingot"},
|
|
|
|
{"basic_materials:copper_wire", "elepower_dynamics:wound_copper_coil", "basic_materials:copper_wire"},
|
|
|
|
{"default:steel_ingot", "elepower_dynamics:capacitor", "default:steel_ingot"},
|
|
|
|
}
|
|
|
|
})
|
|
|
|
|
|
|
|
-------------
|
|
|
|
-- SILICON --
|
|
|
|
-------------
|
|
|
|
|
|
|
|
minetest.register_craftitem(":basic_materials:silicon", {
|
|
|
|
description = "Silicon",
|
2021-08-08 10:39:20 +00:00
|
|
|
inventory_image = "elepower_bm_silicon.png",
|
2018-12-12 13:46:19 +00:00
|
|
|
groups = {silicon = 1, lump = 1}
|
|
|
|
})
|
2018-12-15 22:26:56 +00:00
|
|
|
|
|
|
|
-----------
|
|
|
|
-- BRASS --
|
|
|
|
-----------
|
|
|
|
|
|
|
|
minetest.register_craftitem(":basic_materials:brass_ingot", {
|
|
|
|
description = "Brass Ingot",
|
|
|
|
inventory_image = "elepower_brass_ingot.png",
|
|
|
|
groups = {brass = 1, ingot = 1}
|
|
|
|
})
|
2021-08-08 10:39:20 +00:00
|
|
|
|
|
|
|
-----------
|
|
|
|
-- STEEL --
|
|
|
|
-----------
|
|
|
|
|
|
|
|
minetest.register_craftitem(":basic_materials:steel_strip", {
|
|
|
|
description = "Steel Strip",
|
|
|
|
groups = { strip = 1 },
|
|
|
|
inventory_image = "elepower_bm_strip.png^[multiply:#ffffff"
|
|
|
|
})
|
|
|
|
|
|
|
|
minetest.register_craftitem(":basic_materials:steel_wire", {
|
|
|
|
description = "Spool of steel wire",
|
|
|
|
groups = { wire = 1 },
|
|
|
|
inventory_image = "elepower_bm_steel_wire.png"
|
|
|
|
})
|
|
|
|
|
|
|
|
minetest.register_craft( {
|
|
|
|
output = "basic_materials:steel_wire 2",
|
|
|
|
type = "shapeless",
|
|
|
|
recipe = {
|
|
|
|
"default:steel_ingot",
|
|
|
|
"basic_materials:empty_spool",
|
|
|
|
"basic_materials:empty_spool",
|
|
|
|
},
|
|
|
|
})
|
|
|
|
|
|
|
|
minetest.register_craft( {
|
|
|
|
output = "basic_materials:steel_strip 12",
|
|
|
|
recipe = {
|
|
|
|
{ "", "default:steel_ingot", "" },
|
|
|
|
{ "default:steel_ingot", "", "" },
|
|
|
|
},
|
|
|
|
})
|
|
|
|
|
2018-12-15 22:26:56 +00:00
|
|
|
else
|
2021-08-08 10:39:20 +00:00
|
|
|
minetest.clear_craft({output = "basic_materials:brass_ingot"})
|
|
|
|
|
|
|
|
local steel_strip_def = table.copy(minetest.registered_items["basic_materials:steel_strip"])
|
|
|
|
steel_strip_def.inventory_image = "elepower_bm_strip.png^[multiply:#ffffff"
|
|
|
|
minetest.register_craftitem(":basic_materials:steel_strip", steel_strip_def)
|
|
|
|
|
|
|
|
local copper_strip_def = table.copy(minetest.registered_items["basic_materials:copper_strip"])
|
|
|
|
copper_strip_def.inventory_image = "elepower_bm_strip.png^[multiply:#fcb15f"
|
|
|
|
minetest.register_craftitem(":basic_materials:copper_strip", copper_strip_def)
|
|
|
|
|
|
|
|
local plastic_strip_def = table.copy(minetest.registered_items["basic_materials:plastic_strip"])
|
|
|
|
plastic_strip_def.inventory_image = "elepower_bm_strip.png^[colorize:#ffffff:200"
|
|
|
|
minetest.register_craftitem(":basic_materials:plastic_strip", plastic_strip_def)
|
|
|
|
|
2018-06-21 08:09:01 +00:00
|
|
|
end
|