lm_app.rb 950 B

12345678910111213141516171819202122232425
  1. # frozen_string_literal: true
  2. require_relative 'emoji.rb'
  3. module LmApp
  4. GRAMMAR = "Please check your grammar and capitalization"
  5. IMAGE = "Please include an image for your landmark"
  6. LORE = "This landmark conflicts with server lore"
  7. ELABORATE = "This landmark is too sparce or does not have enough of a public use"
  8. NONSENSE = "The sections are filled out incorrectly"
  9. DUPLICATE = "This landmark is either very similar to another, or does not have a proper reason to exist"
  10. UNDERLEVELED = "You are not high enough level to make this landmark"
  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