Modify ammo recipe and add a new recipe that uses tin
This commit is contained in:
parent
edecba43c2
commit
04e6a43cd2
1 changed files with 9 additions and 1 deletions
|
@ -159,7 +159,15 @@ crafting.register_recipe({
|
||||||
crafting.register_recipe({
|
crafting.register_recipe({
|
||||||
type = "inv",
|
type = "inv",
|
||||||
output = "shooter:ammo 1",
|
output = "shooter:ammo 1",
|
||||||
items = { "default:steel_ingot 5", "default:coal_lump 2" },
|
items = { "default:tin_ingot 3", "default:coal_lump 2" },
|
||||||
|
always_known = true,
|
||||||
|
level = 1,
|
||||||
|
})
|
||||||
|
|
||||||
|
crafting.register_recipe({
|
||||||
|
type = "inv",
|
||||||
|
output = "shooter:ammo 1",
|
||||||
|
items = { "default:steel_ingot 3", "default:coal_lump 2" },
|
||||||
always_known = true,
|
always_known = true,
|
||||||
level = 1,
|
level = 1,
|
||||||
})
|
})
|
||||||
|
|
Loading…
Reference in a new issue