init.lua 664 B

123456789101112131415161718192021222324252627
  1. local S = minetest.get_translator("the_end_crafting_guides")
  2. local modpath = minetest.get_modpath("the_end_crafting_guides")
  3. dofile(modpath .. "/anvil.lua")
  4. dofile(modpath .. "/kiln.lua")
  5. dofile(modpath .. "/mortar_and_pestle.lua")
  6. dofile(modpath .. "/saw.lua")
  7. local text =
  8. S([[Crafting in The End is done using Mortar and Pestle, Kilns, Anvils, Saws and your bare hands.
  9. ]])
  10. in_game_guide.register_page("the_end_crafting_guides:home",
  11. {
  12. title = S("Crafting"),
  13. text = text,
  14. children =
  15. {
  16. "the_end_crafting_guides:kiln",
  17. "the_end_crafting_guides:anvil",
  18. "the_end_crafting_guides:mortar_and_pestle",
  19. "the_end_crafting_guides:saw",
  20. },
  21. })