diff options
| author | 2018-09-08 21:59:23 +0100 | |
|---|---|---|
| committer | 2018-09-08 21:59:23 +0100 | |
| commit | 5453b33d6e9b794c40176fc9224b85b4577a8b8f (patch) | |
| tree | 00d96650a0e62cc88f9e80f9379d68f5de3b1db1 /modules/8ball.py | |
| parent | Remove starttls.py, it's harder than I thought. (diff) | |
| parent | Bootstrap properly on module reload. (diff) | |
Merge pull request #18 from dngfx/master
Ducks.py refresh!
Diffstat (limited to 'modules/8ball.py')
| -rw-r--r-- | modules/8ball.py | 17 |
1 files changed, 15 insertions, 2 deletions
diff --git a/modules/8ball.py b/modules/8ball.py index 39e786e0..9c6e5d1a 100644 --- a/modules/8ball.py +++ b/modules/8ball.py @@ -1,4 +1,5 @@ import random +import Utils CHOICES = [ "Definitely", @@ -13,7 +14,18 @@ CHOICES = [ "The answer is unclear", "Absolutely", "Dubious at best", - "I'm on a break, ask again later" + "I'm on a break, ask again later", + "As I see it, yes", + "It is certain", + "Naturally", + "Reply hazy, try again later", + Utils.color(4) + Utils.underline("DO NOT WASTE MY TIME"), + "Hmm... Could be!", + "I'm leaning towards no", + "Without a doubt", + "Sources say no", + "Sources say yes", + "Sources say maybe" ] class Module(object): @@ -26,4 +38,5 @@ class Module(object): ) def decide(selfs, event): - event["stdout"].write(random.choice(CHOICES)) + event["stdout"].write("You shake the magic ball... it " + "says " + Utils.bold(random.choice(CHOICES))) |
