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:
@ -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----
|
||||
|
||||
|
BIN
minetestforfun_game/mods/doors/textures/door_trapdoor_cherry.png
Normal file
BIN
minetestforfun_game/mods/doors/textures/door_trapdoor_cherry.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 724 B |
BIN
minetestforfun_game/mods/doors/textures/door_wood_cherry.png
Normal file
BIN
minetestforfun_game/mods/doors/textures/door_wood_cherry.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 477 B |
BIN
minetestforfun_game/mods/doors/textures/door_wood_cherry_a.png
Normal file
BIN
minetestforfun_game/mods/doors/textures/door_wood_cherry_a.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 448 B |
BIN
minetestforfun_game/mods/doors/textures/door_wood_cherry_b.png
Normal file
BIN
minetestforfun_game/mods/doors/textures/door_wood_cherry_b.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 548 B |
Reference in New Issue
Block a user