mirror of
https://github.com/sys4-fr/server-nalc.git
synced 2025-07-29 12:50:24 +02:00
Modified doors, vines, homedecor, etc...
- Added doors:trapdoor_cherry and its craft recipe - Removed useless door textures (not following naming convention, so not used in code since the last mff_game update) - Added missing homedecor_models - Re-added vines:shears needed for vines' roots
This commit is contained in:
@ -354,10 +354,10 @@ minetest.register_craft({
|
||||
|
||||
doors.register_door("doors:door_cherry", {
|
||||
description = "Cherry Door",
|
||||
inventory_image = "door_wood_cherry.png",
|
||||
inventory_image = "doors_wood_cherry.png",
|
||||
groups = {choppy=2,oddly_breakable_by_hand=2,flammable=2,door=1},
|
||||
tiles_bottom = {"door_wood_cherry_b.png", "default_wood_cherry_planks.png"},
|
||||
tiles_top = {"door_wood_cherry_a.png", "default_wood_cherry_planks.png"},
|
||||
tiles_bottom = {"doors_wood_cherry_b.png", "default_wood_cherry_planks.png"},
|
||||
tiles_top = {"doors_wood_cherry_a.png", "default_wood_cherry_planks.png"},
|
||||
sounds = default.node_sound_wood_defaults(),
|
||||
sunlight = false,
|
||||
})
|
||||
@ -446,3 +446,23 @@ minetest.register_craft({
|
||||
{'', '', ''},
|
||||
}
|
||||
})
|
||||
|
||||
doors.register_trapdoor("doors:trapdoor_cherry", {
|
||||
description = "Cherry tree trapdoor",
|
||||
inventory_image = "doors_trapdoor_cherry.png",
|
||||
wields_images = "doors_trapdoor_cherry.png",
|
||||
tile_front = "doors_trapdoor_cherry.png",
|
||||
tile_side = "default_wood_cherry_planks.png",
|
||||
groups = {snappy=1, choppy=2, oddly_breakable_by_hand=2, flammable=2, door=1},
|
||||
sounds = default.node_sound_wood_defaults(),
|
||||
sound_open = "doors_door_open",
|
||||
sound_close = "doors_door_close"
|
||||
})
|
||||
|
||||
minetest.register_craft({
|
||||
output = 'doors:trapdoor_cherry 2',
|
||||
recipe = {
|
||||
{'default:cherry_plank', 'default:cherry_plank', 'default:cherry_plank'},
|
||||
{'default:cherry_plank', 'default:cherry_plank', 'default:cherry_plank'},
|
||||
}
|
||||
})
|
||||
|
Reference in New Issue
Block a user