From f0c23808f9dfa48df3627fc6572053c6fbfed203 Mon Sep 17 00:00:00 2001 From: Luke Rogers Date: Wed, 9 May 2012 12:22:34 +1200 Subject: [PATCH] Moar --- plugins/potato.py | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/plugins/potato.py b/plugins/potato.py index 5712a35..aa8b35c 100755 --- a/plugins/potato.py +++ b/plugins/potato.py @@ -16,6 +16,7 @@ def potato(inp, me=None, input=None): potato_type = random.choice(potatoes) size = random.choice(['small', 'little', 'mid-sized', 'medium-sized', 'large', 'gigantic']) flavor = random.choice(['tasty', 'delectable', 'delicious', 'yummy', 'toothsome', 'scrumptious', 'luscious']) - method = random.choice(['bakes', 'fries', 'boils', 'microwaves']) + method = random.choice(['bakes', 'fries', 'boils', 'roasts']) + side_dish = random.choice(['side salad', 'dollop of sour cream', 'piece of chicken', 'bowl of shredded bacon']) - me("%s a %s %s %s potato for %s!" % (method, flavor, size, potato_type, inp)) + me("%s a %s %s %s potato for %s and serves it with a small %s!" % (method, flavor, size, potato_type, inp, side_dish))