]> git.aero2k.de Git - urlbot-v3.git/commitdiff
change the weights of choice formulations
authorThorsten <mail@aero2k.de>
Sat, 11 Apr 2020 10:24:20 +0000 (12:24 +0200)
committerThorsten <mail@aero2k.de>
Sat, 11 Apr 2020 10:24:20 +0000 (12:24 +0200)
distbot/plugins/basic.py

index 9467ebfdae14d1a3361ba5dbdf4caa9ca49df6c4..8df04f37c1cab7795f220f852fce3228dffcf479 100644 (file)
@@ -223,9 +223,10 @@ class Choose(Worker):
         alternatives = words[1:]
         logger.debug("Alternatives: %s", str(alternatives))
         binary = (
-            (('Yes.', 'Yeah!', 'Ok!', 'Aye!', 'Great!'), 4),
-            (('No.', 'Naah..', 'Meh.', 'Nay.', 'You stupid?'), 4),
-            (('Maybe.', 'Dunno.', 'I don\'t care.', 'I choose you, Pikachu!', 'Decision tree growing, check back in 20 years'), 2)
+            (('Yes.', 'Yeah!', 'Ok!', 'Aye!', 'Great!'), 6),
+            (('No.', 'Naah..', 'Meh.', 'Nay.', 'You stupid?'), 6),
+            (('Maybe.', 'Dunno.', 'I don\'t care.'), 3),
+            (('Decision tree growing, check back in 20 years.', "Can't tell right now.", "I need more information."), 1)
         )
 
         def weighted_choice(choices):