Advertisement
supersaiyansubtlety

rules.json

Mar 7th, 2021
50
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.12 KB | None | 0 0
  1. {
  2. "rules": [
  3. {
  4. "id": "OPTIONAL",
  5. "type": "GENERATED",
  6. "caption": "Optional mods: %s",
  7. "tooltip": "Mods with a server component that aren't required on the client. ",
  8. "directories": [ "OPTIONAL" ]
  9. },
  10. {
  11. "id": "SERVER",
  12. "type": "DEFINED",
  13. "caption": "Server mods: %s",
  14. "tooltip": "Mods that are only required on the server. ",
  15. "options": [
  16. {
  17. "id": "on",
  18. "caption": "ON",
  19. "directories": [ "SERVER" ]
  20. },
  21. {
  22. "id": "off",
  23. "caption": "OFF",
  24. "directories": [ ],
  25. "isDefault": true
  26. }
  27. ]
  28. },
  29. {
  30. "id": "CLIENT",
  31. "type": "GENERATED",
  32. "caption": "Client mods: %s",
  33. "tooltip": "Mods that are only required on the client. ",
  34. "directories": [ "CLIENT" ]
  35. },
  36. {
  37. "id": "SITUATIONAL",
  38. "type": "GENERATED",
  39. "caption": "Situational mods: %s",
  40. "tooltip": "Mods that serve some situational utility, usually not intended for survival. ",
  41. "directories": [ "SITUATIONAL" ]
  42. }
  43. ]
  44. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement