fable_app.rb 936 B

12345678910111213141516171819202122232425
  1. # frozen_string_literal: true
  2. require_relative 'emoji.rb'
  3. module FableApp
  4. GRAMMAR = "Please check your grammar and capitalization"
  5. IMAGE = "The given image doesn't seem relevant, or is inappropriate"
  6. LORE = "This fable conflicts with server lore"
  7. ELABORATE = "This fable is too short or does not provide useful lore"
  8. NONSENSE = "The keywords are confusing or unrelated"
  9. DUPLICATE = "This fable is either very similar to another, or does not add any new lore"
  10. UNDERLEVELED = "You are not high enough level to make this fable"
  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 => ELABORATE,
  18. Emoji::QUESTION => NONSENSE,
  19. Emoji::PEOPLE => DUPLICATE,
  20. Emoji::WIZARD => UNDERLEVELED,
  21. Emoji::TALK => DISCUSSED
  22. }
  23. end