Move book/bookshelf to new mod mcl_books
This commit is contained in:
parent
b6c603dc23
commit
92274ae1fa
13 changed files with 77 additions and 79 deletions
|
@ -591,22 +591,6 @@ minetest.register_craft({
|
|||
}
|
||||
})
|
||||
|
||||
minetest.register_craft({
|
||||
type = 'shapeless',
|
||||
output = 'mcl_core:book',
|
||||
recipe = { 'mcl_core:paper', 'mcl_core:paper', 'mcl_core:paper', 'mcl_mobitems:leather',
|
||||
}
|
||||
})
|
||||
|
||||
minetest.register_craft({
|
||||
output = 'mcl_core:bookshelf',
|
||||
recipe = {
|
||||
{'group:wood', 'group:wood', 'group:wood'},
|
||||
{'mcl_core:book', 'mcl_core:book', 'mcl_core:book'},
|
||||
{'group:wood', 'group:wood', 'group:wood'},
|
||||
}
|
||||
})
|
||||
|
||||
minetest.register_craft({
|
||||
output = 'mcl_core:ladder 3',
|
||||
recipe = {
|
||||
|
@ -950,12 +934,6 @@ minetest.register_craft({
|
|||
burntime = 15,
|
||||
})
|
||||
|
||||
minetest.register_craft({
|
||||
type = "fuel",
|
||||
recipe = "mcl_core:bookshelf",
|
||||
burntime = 15,
|
||||
})
|
||||
|
||||
minetest.register_craft({
|
||||
type = "fuel",
|
||||
recipe = "mcl_core:ladder",
|
||||
|
|
|
@ -18,13 +18,6 @@ minetest.register_craftitem("mcl_core:paper", {
|
|||
groups = { craftitem=1 },
|
||||
})
|
||||
|
||||
minetest.register_craftitem("mcl_core:book", {
|
||||
description = "Book",
|
||||
inventory_image = "default_book.png",
|
||||
stack_max = 64,
|
||||
groups = { craftitem=1 },
|
||||
})
|
||||
|
||||
minetest.register_craftitem("mcl_core:coal_lump", {
|
||||
description = "Coal",
|
||||
groups = { coal=1 },
|
||||
|
|
|
@ -985,16 +985,6 @@ minetest.register_node("mcl_core:bedrock", {
|
|||
drop = '',
|
||||
})
|
||||
|
||||
minetest.register_node("mcl_core:bookshelf", {
|
||||
description = "Bookshelf",
|
||||
tiles = {"default_wood.png", "default_wood.png", "default_bookshelf.png"},
|
||||
stack_max = 64,
|
||||
is_ground_content = false,
|
||||
groups = {choppy=3,oddly_breakable_by_hand=2,flammable=3,building_block=1},
|
||||
drop = "mcl_core:book 3",
|
||||
sounds = mcl_core.node_sound_wood_defaults(),
|
||||
})
|
||||
|
||||
minetest.register_node("mcl_core:slimeblock", {
|
||||
description = "Slime Block",
|
||||
drawtype = "nodebox",
|
||||
|
|
Binary file not shown.
Before Width: | Height: | Size: 278 B |
Binary file not shown.
Before Width: | Height: | Size: 476 B |
Loading…
Add table
Add a link
Reference in a new issue