Change ladder recipe to use sticks instead of wood
This commit is contained in:
parent
65275185ba
commit
e9f3da31a6
1 changed files with 42 additions and 2 deletions
|
@ -115,7 +115,47 @@ crafting.register_recipe({
|
|||
crafting.register_recipe({
|
||||
type = "inv",
|
||||
output = "default:ladder 5",
|
||||
items = { "group:wood 7"},
|
||||
items = { "default:stick 7" },
|
||||
always_known = true,
|
||||
level = 1,
|
||||
})
|
||||
|
||||
crafting.register_recipe({
|
||||
type = "inv",
|
||||
output = "default:stick 2",
|
||||
items = { "default:ladder" },
|
||||
always_known = true,
|
||||
level = 1,
|
||||
})
|
||||
|
||||
crafting.register_recipe({
|
||||
type = "inv",
|
||||
output = "default:wood 3",
|
||||
items = { "default:pick_wood" },
|
||||
always_known = true,
|
||||
level = 1,
|
||||
})
|
||||
|
||||
crafting.register_recipe({
|
||||
type = "inv",
|
||||
output = "default:wood 2",
|
||||
items = { "default:sword_wood" },
|
||||
always_known = true,
|
||||
level = 1,
|
||||
})
|
||||
|
||||
crafting.register_recipe({
|
||||
type = "inv",
|
||||
output = "default:wood 3",
|
||||
items = { "default:axe_wood" },
|
||||
always_known = true,
|
||||
level = 1,
|
||||
})
|
||||
|
||||
crafting.register_recipe({
|
||||
type = "inv",
|
||||
output = "default:wood 1",
|
||||
items = { "default:shovel_wood" },
|
||||
always_known = true,
|
||||
level = 1,
|
||||
})
|
||||
|
|
Loading…
Reference in a new issue