forked from VoxeLibre/VoxeLibre
Add podzol
This commit is contained in:
parent
17cfd31c52
commit
4b949e2907
|
@ -264,12 +264,12 @@ minetest.register_node("default:dirt_with_grass", {
|
|||
}),
|
||||
})
|
||||
|
||||
-- TODO: Add particles
|
||||
minetest.register_node("default:mycelium", {
|
||||
description = "Mycelium",
|
||||
tiles = {"default_mycelium_top.png", "default_dirt.png", "default_mycelium_side.png"},
|
||||
is_ground_content = true,
|
||||
stack_max = 64,
|
||||
-- TODO: Add mushroom soil group
|
||||
groups = {crumbly=3},
|
||||
drop = 'default:dirt',
|
||||
sounds = default.node_sound_dirt_defaults({
|
||||
|
@ -277,6 +277,16 @@ minetest.register_node("default:mycelium", {
|
|||
}),
|
||||
})
|
||||
|
||||
minetest.register_node("default:podzol", {
|
||||
description = "Podzol",
|
||||
tiles = {"default_dirt_podzol_top.png", "default_dirt.png", "default_dirt_podzol_side.png"},
|
||||
is_ground_content = true,
|
||||
stack_max = 64,
|
||||
groups = {crumbly=3, soil=1},
|
||||
drop = 'default:dirt',
|
||||
sounds = default.node_sound_dirt_defaults(),
|
||||
})
|
||||
|
||||
minetest.register_node("default:dirt", {
|
||||
description = "Dirt",
|
||||
tiles = {"default_dirt.png"},
|
||||
|
|
Binary file not shown.
After Width: | Height: | Size: 5.1 KiB |
Binary file not shown.
After Width: | Height: | Size: 5.1 KiB |
Loading…
Reference in New Issue