init.lua 627 B

1234567891011121314151617181920212223242526272829
  1. local S = minetest.get_translator("the_end_combat_guides")
  2. local modpath = minetest.get_modpath("the_end_combat_guides")
  3. dofile(modpath .. "/rampages.lua")
  4. dofile(modpath .. "/walls.lua")
  5. dofile(modpath .. "/healing.lua")
  6. local text = S([[Combat is The End is very fast paced and dangerous. It is crucial to heal quickly and avoid getting overwhelmed.
  7. ]])
  8. in_game_guide.register_page("the_end_combat_guides:home",
  9. {
  10. title = S("Combat"),
  11. text = text,
  12. children =
  13. {
  14. "the_end_combat_guides:rampages",
  15. "the_end_combat_guides:healing",
  16. "the_end_combat_guides:walls",
  17. "the_end_mob_guides:home",
  18. },
  19. })