1
0
mirror of https://github.com/sys4-fr/server-nalc.git synced 2025-06-28 06:11:47 +02:00

Added all cherry things from Jordach's BFD

- Added cherry trees' biomes
- Added cherry wooden plank stairs
- Added cherry nodes : sapling, log, wood, etc
- Added cherry trees' generation system
- Added cherry items' crafts
This commit is contained in:
LeMagnesium
2015-03-30 20:54:58 +02:00
parent 1df57889e8
commit 0b7251fdce
14 changed files with 256 additions and 1 deletions

View File

@ -350,6 +350,26 @@ minetest.register_craft({
}
})
-- From BFD: Cherry planks doors
doors.register_door("doors:door_cherry", {
description = "Cherry Door",
inventory_image = "door_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"},
sounds = default.node_sound_wood_defaults(),
sunlight = false,
})
minetest.register_craft({
output = "doors:door_cherry",
recipe = {
{"default:cherry_plank", "default:cherry_plank"},
{"default:cherry_plank", "default:cherry_plank"},
{"default:cherry_plank", "default:cherry_plank"}
}
})
----trapdoor----

Binary file not shown.

After

Width:  |  Height:  |  Size: 724 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 477 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 448 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 548 B