Added blocks
This commit is contained in:
parent
255dd84737
commit
07932fe7fc
1 changed files with 36 additions and 0 deletions
36
nodes.lua
36
nodes.lua
|
@ -0,0 +1,36 @@
|
|||
-- Groups = crumbly =dirt, cracky = stone, snappy = leaves, choppy = wood, explody, oddly_breakable_by_hand
|
||||
|
||||
--Dirts
|
||||
minetest.register_node("aether-2_minetest:aether_dirt"), {
|
||||
description = 'Aether Dirt',
|
||||
tiles = {"aether_dirt"},
|
||||
groups = {crumbly = 1},
|
||||
sounds = default.node_sound_dirt_defaults(),
|
||||
|
||||
}
|
||||
|
||||
minetset.register_node("aether-2_minetest:aether_dirt_with_grass"), {
|
||||
description = 'Aether Grass',
|
||||
tiles = {"aether_dirt_with_grass"},
|
||||
groups = {crumbly=1},
|
||||
drop = 'aether-2_minetest:aether_dirt',
|
||||
sounds = default.node_sound_dirt_defaults(),
|
||||
|
||||
}
|
||||
minetest.register_node("aether-2_minetest:aether_dirt_with_grass", {
|
||||
description = "Aether Grass",
|
||||
tiles = {"aether_grass.png", "aether_dirt.png",
|
||||
{name = "aether_dirt.png^aether_grass_side.png",
|
||||
tileable_vertical = false}},
|
||||
groups = {crumbly = 3, soil = 1, spreading_dirt_type = 1},
|
||||
drop = 'aether_dirt',
|
||||
sounds = default.node_sound_dirt_defaults({
|
||||
footstep = {name = "default_grass_footstep", gain = 0.25},
|
||||
}),
|
||||
})
|
||||
|
||||
|
||||
--Stones
|
||||
|
||||
|
||||
--Trees
|
Loading…
Reference in a new issue