new: added new angry state (closes #486)

This commit is contained in:
Simone Margaritelli
2019-11-01 15:53:31 +01:00
parent 2f948306eb
commit 31a89cbe4b
5 changed files with 36 additions and 5 deletions

View File

@ -67,6 +67,13 @@ class Voice:
self._('I\'m sad'),
'...'])
def on_angry(self):
# passive aggressive or not? :D
return random.choice([
'...',
self._('Leave me alone ...'),
self._('I\'m mad at you!')])
def on_excited(self):
return random.choice([
self._('I\'m living the life!'),