Add crafting recipes for steel and bronze block (#593)
This commit is contained in:
parent
eb69beeb1d
commit
e18fa14af0
1 changed files with 18 additions and 0 deletions
|
@ -69,6 +69,24 @@ crafting.register_recipe({
|
||||||
level = 1,
|
level = 1,
|
||||||
})
|
})
|
||||||
|
|
||||||
|
--Bronze block <== Bronze Ingot x9
|
||||||
|
crafting.register_recipe({
|
||||||
|
type = "inv",
|
||||||
|
output = "default:bronzeblock",
|
||||||
|
items = { "default:bronze_ingot 9" },
|
||||||
|
always_known = true,
|
||||||
|
level = 1,
|
||||||
|
})
|
||||||
|
|
||||||
|
--Steel block <== Steel Ingot x9
|
||||||
|
crafting.register_recipe({
|
||||||
|
type = "inv",
|
||||||
|
output = "default:steelblock",
|
||||||
|
items = { "default:steel_ingot 9" },
|
||||||
|
always_known = true,
|
||||||
|
level = 1,
|
||||||
|
})
|
||||||
|
|
||||||
-- Furnace <== group:stone x8
|
-- Furnace <== group:stone x8
|
||||||
crafting.register_recipe({
|
crafting.register_recipe({
|
||||||
type = "inv",
|
type = "inv",
|
||||||
|
|
Loading…
Reference in a new issue