zombietest/mods/basic_materials/plastics.lua

23 lines
745 B
Lua

-- items
minetest.register_craftitem("basic_materials:plastic_sheet", {
description = "Plastic sheet",
inventory_image = "basic_materials_plastic_sheet.png",
})
minetest.register_craftitem("basic_materials:plastic_strip", {
description = "Plastic strips",
inventory_image = "basic_materials_plastic_strip.png",
})
minetest.register_craftitem("basic_materials:empty_spool", {
description = "Empty wire spool",
inventory_image = "basic_materials_empty_spool.png"
})
-- aliases
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")