char_app.rb 1.0 KB

12345678910111213141516171819202122232425
  1. # frozen_string_literal: true
  2. require_relative 'emoji.rb'
  3. module CharApp
  4. GRAMMAR = "Please check your grammar and capitalization"
  5. IMAGE = "Your image is inappropriate or conflicts with the age rating"
  6. LORE = "This character conflicts with server lore"
  7. DM_NOTES = "This character is too sparce or does not have enough detail in the DM Notes"
  8. NONSENSE = "The character has conflicting personality traits or backstory"
  9. DUPLICATE = "This character is either very similar to another, or does not have a proper reason to exist"
  10. OVERPOWERED = "This character has unexplained abilities or is generally too powerful"
  11. DISCUSSED = "You have already discussed issues with an admin"
  12. INLINE_SPACE = "------------------------------"
  13. REJECT_MESSAGES = {
  14. Emoji::SPEECH_BUBBLE => GRAMMAR,
  15. Emoji::PICTURE => IMAGE,
  16. Emoji::BOOKS => LORE,
  17. Emoji::NOTE => DM_NOTES,
  18. Emoji::QUESTION => NONSENSE,
  19. Emoji::PEOPLE => DUPLICATE,
  20. Emoji::WIZARD => OVERPOWERED,
  21. Emoji::TALK => DISCUSSED
  22. }
  23. end