healing.lua 451 B

12345678910111213141516
  1. local S = minetest.get_translator("the_end_combat_guides")
  2. local text =
  3. S([[There are two healing items in The End: Stone Cake and Juice.
  4. For healing yourself, Stone Cake is much stronger. Having enough of it is crucial for survival.
  5. Juice is a lot weaker, but it is infinite and can also be used to heal others. It is also disgusting.
  6. ]])
  7. in_game_guide.register_page("the_end_combat_guides:healing",
  8. {
  9. title = S("Healing"),
  10. text = text,
  11. })