Browse Source

update rejection responses

Kylie Jo Swistak 5 years ago
parent
commit
f2e47e2afb
2 changed files with 18 additions and 14 deletions
  1. 16 13
      lib/char_app.rb
  2. 2 1
      lib/emoji.rb

+ 16 - 13
lib/char_app.rb

@@ -2,24 +2,27 @@
 require_relative 'emoji.rb'
 
 module CharApp
-  GRAMMAR = "Please check your grammar and\ncapitalization"
-  UNITS = "Please specify your units in\nImperial or Metric"
-  IMAGE = "Your image is inappropriate for\ndefault use"
-  LORE = "One or more responses are\nconflicting with server lore"
-  UNDER_AGE = "Your age conflicts with the\nspecified rating"
-  INVALID = "One or more responses are\ninvalid"
-  VULGAR = "Your application is too vulgar,\nor conflicts with server rules"
-  DM_NOTES = "Please elaborate on your\nDM Notes"
+  GRAMMAR = "Please check your grammar and capitalization"
+  IMAGE = "Please check your units, grammar, and capitalization"
+  LORE = "Your image is inappropriate or conflicts with the age rating"
+  NONSENSE = "The character has conflicting personality traits or backstory"
+  DUPLICATE = "This character is either very similar to another, or does not have a proper reason to exist"
+  OVERPOWERED = "This character has unexplained abilities or is generally too powerful"
+  #GRAMMAR = "Please check your grammar and\ncapitalization"
+  #IMAGE = "Please check your units,\ngrammar, and capitalization"
+  #LORE = "Your image is inappropriate or\nconflicts with the age rating"
+  #NONSENSE = "The character has conflicting\npersonality traits or backstory"
+  #DUPLICATE = "This character is either very\nsimilar to another, or does\nnot have a proper reason to exist"
+  #OVERPOWERED = "This character has unexplained\nabilities or is generally\ntoo powerful"
   INLINE_SPACE = "------------------------------"
 
   REJECT_MESSAGES = {
     Emoji::SPEECH_BUBBLE => GRAMMAR,
-    Emoji::SCALE => UNITS,
     Emoji::PICTURE => IMAGE,
     Emoji::BOOKS => LORE,
-    Emoji::BABY => UNDER_AGE,
-    Emoji::SKULL => INVALID,
-    Emoji::VULGAR => VULGAR,
-    Emoji::NOTE => DM_NOTES
+    Emoji::NOTE => DM_NOTES,
+    Emoji::QUESTION => NONSENSE,
+    Emoji::PEOPLE => DUPLICATE,
+    Emoji::WIZARD => OVERPOWERED
   }
 end

+ 2 - 1
lib/emoji.rb

@@ -76,11 +76,12 @@ module Emoji
   HOUSES = "🏘️"
   PEOPLE = "👥"
   BUST = "👤"
+  WIZARD = "🧙"
 
 
   LETTERS = [A, B, C, D, E, F, G, H, I, J, K, L, M, N, O, P, Q, R, S, T, U, V, W, X, Y, Z]
   NUMBERS = [ONE, TWO, THREE, FOUR, FIVE, SIX, SEVEN, EIGHT, NINE, TEN]
-  CHAR_APP = [SPEECH_BUBBLE, SCALE, PICTURE, BOOKS, BABY, SKULL, VULGAR, NOTE]
+  CHAR_APP = [SPEECH_BUBBLE, PICTURE, BOOKS, NOTE, QUESTION, PEOPLE, WIZARD]
   IMG_APP = [DOG, KEY, FLAG, PAGE, BOOKS, VULGAR]
   MEMBER = [EYES, PICTURE, BAGS, FAMILY, BUST, CROSS]
 end