img_app.rb 714 B

12345678910111213141516171819202122
  1. # frozen_string_literal: true
  2. require_relative '../../lib/emoji.rb'
  3. module ImgApp
  4. SPECIES = "Your image contradicts your\ncharacters species"
  5. KEYWORD = "Your keyword is invalid or\nmisleading"
  6. CATEGORY = "Your image category is\nincorrectly flagged"
  7. URL = "Your image url is incorrect,\nplease check for the `.png` etc.."
  8. LORE = "Your image is conflicting\nwith server lore"
  9. VULGAR = "Your image or keyword is too\nvulgar, or contradicts server rules"
  10. INLINE_SPACE = "------------------------------------"
  11. REJECT_MESSAGES = {
  12. Emoji::DOG => SPECIES,
  13. Emoji::KEY => KEYWORD,
  14. Emoji::FLAG => CATEGORY,
  15. Emoji::PAGE => URL,
  16. Emoji::BOOKS => LORE,
  17. Emoji::VULGAR => VULGAR
  18. }
  19. end