Advertisement
Guest User

Untitled

a guest
Sep 12th, 2012
38
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. minetest.register_node("default:sapling", {
  2. description = "Sapling",
  3. drawtype = "plantlike",
  4. visual_scale = 1.0,
  5. tiles ={"default_sapling.png"},
  6. inventory_image = "default_sapling.png",
  7. wield_image = "default_sapling.png",
  8. paramtype = "light",
  9. walkable = false,
  10. groups = {snappy=2,dig_immediate=3},
  11. sounds = default.node_sound_defaults(),
  12. })
  13. minetest.register_node("default:stone", {
  14. description = "Stone",
  15. tiles ={"default_stone.png"},
  16. is_ground_content = true,
  17. groups = {cracky=3},
  18. drop = 'default:cobble',
  19. legacy_mineral = true,
  20. sounds = default.node_sound_stone_defaults(),
  21. })
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement