Change ladder recipe to use sticks instead of wood

This commit is contained in:
ClobberXD 2018-08-03 18:55:09 +05:30 committed by rubenwardy
parent 65275185ba
commit e9f3da31a6

View file

@ -107,7 +107,7 @@ crafting.register_recipe({
crafting.register_recipe({
type = "inv",
output = "default:torch 5",
items = { "default:stick", "default:coal_lump"},
items = { "default:stick", "default:coal_lump" },
always_known = true,
level = 1,
})
@ -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,
})