More affection.
authorCMDR furrycat <elite@furrycat.net>
Fri, 20 Jan 2017 16:30:37 +0000 (16:30 +0000)
committerCMDR furrycat <elite@furrycat.net>
Fri, 20 Jan 2017 16:30:37 +0000 (16:30 +0000)
plugin/affection/affection.py

index c39e0b2..8659a42 100644 (file)
@@ -5,8 +5,8 @@ import bot
 
 class Affection(object):
   def __init__(self):
-    self.eat = ['biscuit', 'catnip', 'food', 'treat']
-    self.fuss = ['fuss', 'love', 'pat', 'pet']
+    self.eat = ['biscuit', 'catnip', 'food', 'fish', 'lollipop', 'sausage', 'treat']
+    self.fuss = ['fuss', 'hug', 'love', 'nice', 'pat', 'pet', 'stroke']
 
   def description(self):
     return 'Respond (or not) to displays of affection.'
@@ -35,9 +35,9 @@ class Affection(object):
   @asyncio.coroutine
   def handle_affection(self, message, command):
     if command in self.eat:
-      responses = ['om nom nom', '^-^', 'meow!', 'lick', ':cat:']
+      responses = ['om nom nom', '^-^', 'meow!', 'lick', ':cat:', ':fork_and_knife:']
     else:
-      responses = ['nuzzle', '^-^', 'meow!', 'mrrp', ':cat:']
+      responses = ['nuzzle', '^-^', 'meow!', 'mrrp', ':cat:', ':paw_prints:']
     for response in responses:
       said = yield from bot.maybe_say(message.channel, response)
       if said: