doc.lua 4.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758
  1. doc.add_category("epic_server",
  2. {
  3. name = ("Server Specific Information"),
  4. description = ("Helpful information about this server"),
  5. build_formspec = doc.entry_builders.text_and_gallery,
  6. })
  7. doc.add_entry("epic_server", "armor", {
  8. name = ("Armor"),
  9. data = { text = ('Armor comes in a wide variety of strengths and materials. Take a look in the upper halls of the Hall of Wisdom for stats on the different styles.\n'..
  10. 'Armor can\'t be crafted in the crafting grid, but will need to be created at either the anvil or the crystal workshop. You can find public anvils and crystal workshops at spawn.\n\n'..
  11. 'In addition to metal or crystals you\'ll also need some sort of fabric/leather. The metal armor can be crafted with burlap or leather, and the crystal armor can be crafted with fabric or leather.')
  12. }
  13. })
  14. doc.add_entry("epic_server", "crafting", {
  15. name = ("Crafting"),
  16. data = { text = ('Crafting on this server is not like many other servers or local games. Lots of items are only craftable in the stations. Thankfully the crafting guide in inventory will tell you which station to craft things in.\n\n'..
  17. 'Currently there is a bug where the craft recipe won\'t show the correct number of items if it is a group.')
  18. }
  19. })
  20. doc.add_entry("epic_server", "stations", {
  21. name = ("Stations"),
  22. data = { text = ('The Stations are where you\'ll do a goodly portion of your crafting. You can use the public ones in spawn, or create your own. Using public stations you leave yourself vulnerable to people stealing your resources.'..
  23. 'You can craft locked stations which will only allow people who have access to the area protection to place or remove items from the station inventories. This makes it safe to leave resources in the locked stations.'..
  24. 'Nearly all the stations provide their own craft guides which you can view by clicking the "Show Guide" button in the lower left.\n\n'..
  25. 'You can toggle between a single item, and the max you can craft or have in a stack by clicking the [Max Output] or [Min Output] button in the lower left corner.'..
  26. 'Using Shift + Click you can instantly move an entire stack into your inventory, or into the station resource pool, Shift+Scrollwheel over an item will send a single to or from the station.'..
  27. 'You can pull up the craft guide by clicking the [Show Guide] button in the very bottom left corner.')
  28. }
  29. })
  30. doc.add_entry("epic_server", "mobs", {
  31. name = ("Mobs"),
  32. data = { text = ('There are many unusual and completely custom mobs on this server. They tend to get more and more powerful as you travel deeper into the earth, or further out into space.'..
  33. 'Don\'t try and visit the cavrealms, nether, or space without first getting yourself some suitable armor.')
  34. }
  35. })
  36. doc.add_entry("epic_server", "chat", {
  37. name = ("Chat"),
  38. data = { text = ('The server runs the Chat3 mod which lets you ignore players, this will prevent you from seeing their messages, and them from seeing your messages. '..
  39. 'You can ignore a player with the following command /ignore add <playername>\n'..
  40. 'Ingame chat is also tied to the Discord server. By default the Discord bridge is turned off for all players. To toggle the bridge use the /discord command.'..
  41. 'With the bridge disabled your chat messages will not be sent to discord, and you won\'t see any messages sent from discord.')
  42. }
  43. })
  44. doc.add_entry("epic_server", "maxhp", {
  45. name = ("Max HP"),
  46. data = { text = ('In an attempt to dissuade people from killing themselves in lava to make a messes on the server I wrote this mod. Every time you die you\'ll loose one of your max HP down to 25.\n\n'..
  47. 'You can gain max HP back by consuming a variety of items, with more to be added soon.\n'..
  48. 'Eating a chocolate block will increase your max HP by 1, up to a max of 45.\n'..
  49. 'Eating a golden carrot will increase your max HP by 1, up to a max of 60.\n')
  50. }
  51. })