spacecannon/ammo.lua
Kiëd Llaentenn 29c0daca0b
Add railgun cannons (#16)
* 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
2023-05-30 05:44:29 +02:00

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"}
},
})