Add coarse dirt
This commit is contained in:
parent
98a8df352b
commit
4ed8027099
4 changed files with 24 additions and 3 deletions
|
@ -48,6 +48,13 @@ minetest.register_craft({
|
|||
}
|
||||
})
|
||||
|
||||
minetest.register_craft({
|
||||
output = 'default:coarse_dirt 4',
|
||||
recipe = {
|
||||
{'default:dirt', 'default:gravel'},
|
||||
{'default:gravel', 'default:dirt'},
|
||||
}
|
||||
})
|
||||
|
||||
minetest.register_craft({
|
||||
output = 'default:stick 4',
|
||||
|
|
|
@ -235,6 +235,14 @@ minetest.register_node("default:dirt", {
|
|||
sounds = default.node_sound_dirt_defaults(),
|
||||
})
|
||||
|
||||
minetest.register_node("default:coarse_dirt", {
|
||||
description = "Coarse Dirt",
|
||||
tiles = {"default_coarse_dirt.png"},
|
||||
is_ground_content = true,
|
||||
stack_max = 64,
|
||||
groups = {crumbly=3, soil=1},
|
||||
sounds = default.node_sound_dirt_defaults(),
|
||||
})
|
||||
|
||||
minetest.register_node("default:gravel", {
|
||||
description = "Gravel",
|
||||
|
|
BIN
mods/default/textures/default_coarse_dirt.png
Normal file
BIN
mods/default/textures/default_coarse_dirt.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 20 KiB |
Loading…
Add table
Add a link
Reference in a new issue