nodes.lua 858 B

1234567891011121314151617181920212223242526272829
  1. local S = minetest.get_translator("permafrost")
  2. toppings_api.register_topped("scorched_dirt",
  3. {
  4. description = S("Permafrost with Rocks"),
  5. sounds = generic_media.node_sound_gravel_defaults(),
  6. top = "permafrost_stones_top.png",
  7. sides = "permafrost_stones_sides.png",
  8. name = "permafrost:with_rocks",
  9. })
  10. toppings_api.register_topped("scorched_dirt",
  11. {
  12. description = S("Permafrost with Moss"),
  13. sounds = generic_media.node_sound_moss_defaults(),
  14. top = "permafrost_moss_top.png",
  15. sides = "permafrost_moss_sides.png",
  16. name = "permafrost:with_moss",
  17. })
  18. toppings_api.register_topped("permafrost:with_moss",
  19. {
  20. description = S("Permafrost with Rocks and Moss"),
  21. sounds = generic_media.node_sound_moss_defaults(),
  22. top = "permafrost_stones_top.png",
  23. sides = "permafrost_stones_sides.png",
  24. name = "permafrost:with_moss_and_rocks",
  25. })