Added crafting recipes

master
HimbeerserverDE 2020-06-27 21:16:09 +02:00
parent 3a664dd175
commit cf07fb7aa9
5 changed files with 1083 additions and 1065 deletions

34
crafts.lua Normal file
View File

@ -0,0 +1,34 @@
minetest.register_craft({
output = "barriers:warning_light_off",
recipe = {
{"", "mesecons_lightstone:lightstone_yellow_off", ""},
{"wool:black", "wool:black", "wool:black"},
},
})
minetest.register_craft({
output = "barriers:tl_cr_yr_off",
recipe = {
{"wool:black", "dye:red", "wool:black"},
{"wool:black", "wool:black", "wool:black"},
{"wool:black", "dye:yellow", "wool:black"},
},
})
minetest.register_craft({
output = "barriers:barrier_closed_right",
recipe = {
{"default:steel_ingot", "dye:dark_green", "dye:white"},
{"default:steel_ingot", "mesecons_movestones:movestone_vertical", "default:steel_ingot"},
{"default:steel_ingot", "dye:dark_green", "dye:red"},
},
})
minetest.register_craft({
output = "barriers:barrier_closed_left",
recipe = {
{"dye:white", "dye:dark_green", "default:steel_ingot"},
{"default:steel_ingot", "mesecons_movestones:movestone_vertical", "default:steel_ingot"},
{"dye:red", "dye:dark_green", "default:steel_ingot"},
},
})

1069
init.lua

File diff suppressed because it is too large Load Diff

1045
nodes.lua Normal file

File diff suppressed because it is too large Load Diff

Binary file not shown.

Before

Width:  |  Height:  |  Size: 19 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 21 KiB