Add crafting recipes for the recently-added traffic lights

All traffic lights are now craftable.
master
cheapie 2016-05-12 15:05:39 -05:00
parent 1cced6fb37
commit 4de839f852
1 changed files with 25 additions and 0 deletions

View File

@ -710,6 +710,31 @@ minetest.register_craft({
}
})
minetest.register_craft({
output = "streets:pedlight_top_off",
recipe = {
{"default:steel_ingot", "dye:orange", "default:steel_ingot"},
{"default:steel_ingot", "default:steel_ingot", "default:steel_ingot"},
{"default:steel_ingot", "dye:white", "default:steel_ingot"}
}
})
minetest.register_craft({
output = "streets:trafficlight_top_extender_left_off",
recipe = {
{"dye:yellow", "default:steel_ingot", "default:steel_ingot"},
{"dye:green", "default:steel_ingot", "default:steel_ingot"}
}
})
minetest.register_craft({
output = "streets:trafficlight_top_extender_right_off",
recipe = {
{"default:steel_ingot", "default:steel_ingot", "dye:yellow"},
{"default:steel_ingot", "default:steel_ingot", "dye:green"}
}
})
minetest.register_craft({
output = "streets:digiline_distributor",
recipe = {