1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
|
-- support for i18n
local S = plantlife_i18n.gettext
-- nodes
minetest.register_node("woodsoils:dirt_with_leaves_1", {
description = S("Forest Soil 1"),
tiles = {
"default_dirt.png^woodsoils_ground_cover.png",
"default_dirt.png",
"default_dirt.png^woodsoils_ground_cover_side.png"},
is_ground_content = true,
groups = {
crumbly=3,
soil=1--,
--not_in_creative_inventory=1
},
drop = 'default:dirt',
sounds = default.node_sound_dirt_defaults({
footstep = {name="default_grass_footstep", gain=0.4},
}),
})
minetest.register_node("woodsoils:dirt_with_leaves_2", {
description = S("Forest Soil 2"),
tiles = {
"woodsoils_ground.png",
"default_dirt.png",
"default_dirt.png^woodsoils_ground_side.png"},
is_ground_content = true,
groups = {
crumbly=3,
soil=1--,
--not_in_creative_inventory=1
},
drop = 'default:dirt',
sounds = default.node_sound_dirt_defaults({
footstep = {name="default_grass_footstep", gain=0.4},
}),
})
minetest.register_node("woodsoils:grass_with_leaves_1", {
description = S("Forest Soil 3"),
tiles = {
"default_grass.png^woodsoils_ground_cover2.png",
"default_dirt.png",
"default_dirt.png^default_grass_side.png^woodsoils_ground_cover_side2.png"},
is_ground_content = true,
groups = {
crumbly=3,
soil=1--,
--not_in_creative_inventory=1
},
drop = 'default:dirt',
sounds = default.node_sound_dirt_defaults({
footstep = {name="default_grass_footstep", gain=0.4},
}),
})
minetest.register_node("woodsoils:grass_with_leaves_2", {
description = S("Forest Soil 4"),
tiles = {
"default_grass.png^woodsoils_ground_cover.png",
"default_dirt.png",
"default_dirt.png^default_grass_side.png^woodsoils_ground_cover_side.png"},
is_ground_content = true,
groups = {
crumbly=3,
soil=1--,
--not_in_creative_inventory=1
},
drop = 'default:dirt',
sounds = default.node_sound_dirt_defaults({
footstep = {name="default_grass_footstep", gain=0.4},
}),
})
-- For compatibility with older stuff
minetest.register_alias("forestsoils:dirt_with_leaves_1", "woodsoils:dirt_with_leaves_1")
minetest.register_alias("forestsoils:dirt_with_leaves_2", "woodsoils:dirt_with_leaves_2")
minetest.register_alias("forestsoils:grass_with_leaves_1", "woodsoils:grass_with_leaves_1")
minetest.register_alias("forestsoils:grass_with_leaves_2", "woodsoils:grass_with_leaves_2")
|