mirror of
https://github.com/pandorabox-io/spacecannon.git
synced 2024-12-21 13:25:44 +01:00
29c0daca0b
* feat: add purple and blue cannons (railguns) * fix: linter warnings * fix: last commit Seems I forgot to save some changes that were supposed to be part of the last commit. * feat: don't change cannon projectile range Avoid breaking builds on other servers
14 lines
576 B
Lua
14 lines
576 B
Lua
minetest.register_craftitem("spacecannon:railgun_slug", {
|
|
description = "Railgun slug",
|
|
inventory_image = "spacecannon_railgun_slug.png",
|
|
})
|
|
|
|
minetest.register_craft({
|
|
output = "spacecannon:railgun_slug 2",
|
|
recipe = {
|
|
{ "", "technic:uranium0_ingot", ""},
|
|
{"basic_materials:carbon_steel_bar", "technic:stainless_steel_ingot", "basic_materials:carbon_steel_bar"},
|
|
{ "technic:stainless_steel_ingot", "technic:stainless_steel_ingot", "technic:stainless_steel_ingot"}
|
|
},
|
|
})
|