init.lua 637 B

12345678910111213141516171819202122232425262728293031
  1. local S = minetest.get_translator("the_end_mob_guides")
  2. local modpath = minetest.get_modpath("the_end_mob_guides")
  3. dofile(modpath .. "/paniki.lua")
  4. dofile(modpath .. "/botete.lua")
  5. dofile(modpath .. "/unggoy.lua")
  6. dofile(modpath .. "/sarangay.lua")
  7. local text =
  8. S([[The End has four types of monsters:
  9. Paniki, a bat
  10. Botete, a pufferfish
  11. Unggoy, a monkey
  12. Sarangay, a minotaur]])
  13. in_game_guide.register_page("the_end_mob_guides:home",
  14. {
  15. title = S("Monsters"),
  16. text = text,
  17. children =
  18. {
  19. "the_end_mob_guides:paniki",
  20. "the_end_mob_guides:botete",
  21. "the_end_mob_guides:unggoy",
  22. "the_end_mob_guides:sarangay"
  23. },
  24. })