Advertisement
supersaiyansubtlety

rules.json

Mar 7th, 2021
66
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.01 KB | None | 0 0
  1. {
  2. "rules": [
  3. {
  4. "id": "OPTIONAL",
  5. "type": "DEFINED",
  6. "caption": "Optional mods: %s",
  7. "tooltip": "Mods with a server component that aren't required on the client. ",
  8. "options": [
  9. {
  10. "id": "on",
  11. "type": "GENERATED",
  12. "caption": "ON",
  13. "directories": [ "OPTIONAL" ]
  14. },
  15. {
  16. "id": "off",
  17. "type": "DEFINED",
  18. "caption": "OFF",
  19. "directories": [ ]
  20. }
  21. ]
  22. },
  23. {
  24. "id": "SERVER",
  25. "type": "DEFINED",
  26. "caption": "Server mods: %s",
  27. "tooltip": "Mods that are only required on the server. ",
  28. "options": [
  29. {
  30. "id": "on",
  31. "type": "DEFINED",
  32. "caption": "ON",
  33. "directories": [ "SERVER" ]
  34. },
  35. {
  36. "id": "off",
  37. "type": "DEFINED",
  38. "caption": "OFF",
  39. "directories": [ ],
  40. "isDefault": true
  41. }
  42. ]
  43. },
  44. {
  45. "id": "CLIENT",
  46. "type": "DEFINED",
  47. "caption": "Client mods: %s",
  48. "tooltip": "Mods that are only required on the client. ",
  49. "options": [
  50. {
  51. "id": "on",
  52. "type": "GENERATED",
  53. "caption": "ON",
  54. "directories": [ "CLIENT" ]
  55. },
  56. {
  57. "id": "off",
  58. "type": "DEFINED",
  59. "caption": "OFF",
  60. "directories": [ ]
  61. }
  62. ]
  63. },
  64. {
  65. "id": "SITUATIONAL",
  66. "type": "DEFINED",
  67. "caption": "Situational mods: %s",
  68. "tooltip": "Mods that serve some situational utility, usually not intended for survival. ",
  69. "options": [
  70. {
  71. "id": "on",
  72. "type": "GENERATED",
  73. "caption": "ON",
  74. "directories": [ "SITUATIONAL" ]
  75. },
  76. {
  77. "id": "off",
  78. "type": "DEFINED",
  79. "caption": "OFF",
  80. "directories": [ ],
  81. "isDefault": true
  82. }
  83. ]
  84. }
  85. ]
  86. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement