forked from VoxeLibre/VoxeLibre
Add bowl
This commit is contained in:
parent
2b1489028a
commit
c0d7b57448
|
@ -756,6 +756,16 @@ minetest.register_craft({
|
|||
}
|
||||
})
|
||||
|
||||
minetest.register_craft({
|
||||
output = "default:bowl 4",
|
||||
recipe = {
|
||||
{"group:wood", "", "group:wood"},
|
||||
{"", "group:wood", ""},
|
||||
}
|
||||
})
|
||||
|
||||
|
||||
|
||||
minetest.register_craft({
|
||||
output = 'default:snowblock',
|
||||
recipe = {
|
||||
|
|
|
@ -136,6 +136,12 @@ minetest.register_craftitem("default:string",{
|
|||
stack_max = 64,
|
||||
})
|
||||
|
||||
minetest.register_craftitem("default:bowl",{
|
||||
description = "Bowl",
|
||||
inventory_image = "default_bowl.png",
|
||||
stack_max = 64,
|
||||
})
|
||||
|
||||
minetest.register_craftitem("default:prismarine_cry", {
|
||||
description = "Prismarine Crystals",
|
||||
inventory_image = "default_prismarine_crystals.png",
|
||||
|
|
Binary file not shown.
After Width: | Height: | Size: 283 B |
Loading…
Reference in New Issue