You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
26 lines
509 B
26 lines
509 B
minetest.register_craft({ |
|
type = 'shapeless', |
|
output = 'furniture:lectern_encyclopedia', |
|
recipe = { |
|
'doc_encyclopedia:encyclopedia', |
|
'furniture:lectern' |
|
} |
|
}) |
|
|
|
minetest.register_craft({ |
|
type = 'shapeless', |
|
output = 'furniture:bookshelf_locked', |
|
recipe = { |
|
'default:bookshelf', |
|
'furniture:lock' |
|
} |
|
}) |
|
|
|
minetest.register_craft({ |
|
type = 'shapeless', |
|
output = 'furniture:shelf_vessel_locked', |
|
recipe = { |
|
'vessels:shelf', |
|
'furniture:lock' |
|
} |
|
})
|
|
|