mirror of
https://github.com/pyrollo/display_modpack.git
synced 2025-07-04 00:51:21 +02:00
Creation of signs_road mod
This commit is contained in:
27
signs_road/crafts.lua
Normal file
27
signs_road/crafts.lua
Normal file
@ -0,0 +1,27 @@
|
||||
minetest.register_craft({
|
||||
output = 'signs_road:blue_street',
|
||||
recipe = {
|
||||
{'dye:blue', 'dye:white', 'default:steel_ingot'},
|
||||
{'default:steel_ingot', 'default:steel_ingot', 'default:steel_ingot'},
|
||||
{'', '', ''},
|
||||
}
|
||||
})
|
||||
|
||||
minetest.register_craft({
|
||||
output = 'signs_road:green_street',
|
||||
recipe = {
|
||||
{'dye:green', 'dye:white', 'default:steel_ingot'},
|
||||
{'default:steel_ingot', 'default:steel_ingot', 'default:steel_ingot'},
|
||||
{'', '', ''},
|
||||
}
|
||||
})
|
||||
|
||||
minetest.register_craft({
|
||||
output = 'signs_road:black_right',
|
||||
recipe = {
|
||||
{'dye:black', 'dye:white', 'default:steel_ingot'},
|
||||
{'default:steel_ingot', 'default:steel_ingot', ''},
|
||||
{'', '', ''},
|
||||
}
|
||||
})
|
||||
|
Reference in New Issue
Block a user