mirror of
https://github.com/pandorabox-io/spacecannon.git
synced 2024-12-21 05:15:47 +01:00
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"}
|
||
|
},
|
||
|
})
|