Skip to content

Commit

Permalink
new stuff, such as clay, random patches of gravel, sand etc
Browse files Browse the repository at this point in the history
  • Loading branch information
Jordach committed Dec 30, 2014
1 parent ff1121c commit c91482d
Show file tree
Hide file tree
Showing 6 changed files with 141 additions and 65 deletions.
9 changes: 9 additions & 0 deletions mods/mapgen/init.lua
Expand Up @@ -58,6 +58,15 @@ minetest.register_item(":", {
-- })
-- end)

minetest.register_node("mapgen:gravel", {
description = "Gravel",
tiles = {"mapgen_gravel.png"},
is_ground_content = true,
drop = 'mapgen:gravel',
groups = {crumbly=2, soil=1, falling_node=1},
sounds = default.node_sound_dirt_defaults(),
})

minetest.register_node("mapgen:grass", {
description = "Dirt with Grass",
tiles = {"mapgen_grass.png", "mapgen_dirt.png", "mapgen_dirt.png^mapgen_grass_side_1.png"},
Expand Down

0 comments on commit c91482d

Please sign in to comment.