1
0
mirror of https://github.com/sys4-fr/server-nalc.git synced 2025-06-28 06:11:47 +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:
LeMagnesium
2015-04-01 21:42:29 +02:00
parent 4d9a1e8741
commit 16fd682ebb
49 changed files with 18180 additions and 6 deletions

View File

@ -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'},
}
})

Binary file not shown.

Before

Width:  |  Height:  |  Size: 127 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 128 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 204 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 204 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 82 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 115 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 130 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 217 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 217 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 88 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 132 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 449 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 461 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 350 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 173 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 130 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 555 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 539 B

View File

Before

Width:  |  Height:  |  Size: 724 B

After

Width:  |  Height:  |  Size: 724 B

View File

Before

Width:  |  Height:  |  Size: 477 B

After

Width:  |  Height:  |  Size: 477 B

View File

Before

Width:  |  Height:  |  Size: 448 B

After

Width:  |  Height:  |  Size: 448 B

View File

Before

Width:  |  Height:  |  Size: 548 B

After

Width:  |  Height:  |  Size: 548 B