Add files via upload

This commit is contained in:
loosewheel
2021-11-29 11:29:56 +10:00
committed by GitHub
parent 1459dc2029
commit 2b61dfb872
10 changed files with 904 additions and 36 deletions

View File

@@ -23,6 +23,35 @@ minetest.register_craft( {
})
minetest.register_craft( {
output = "lwcomponents:cannon_shell 10",
recipe = {
{ "default:steel_ingot", "default:steel_ingot" },
{ "", "default:coalblock" },
},
})
minetest.register_craft( {
output = "lwcomponents:cannon_soft_shell 10",
recipe = {
{ "default:steel_ingot", "default:steel_ingot" },
{ "default:copper_lump", "default:coalblock" },
},
})
if minetest.global_exists ("fire") then
minetest.register_craft( {
output = "lwcomponents:cannon_fire_shell 10",
recipe = {
{ "default:steel_ingot", "default:steel_ingot" },
{ "default:iron_lump", "default:coalblock" },
},
})
end
if utils.digilines_supported or utils.mesecon_supported then