From 17b51ef2fc28b3b99fd28add68b8584901b8b858 Mon Sep 17 00:00:00 2001 From: thenoodle68 Date: Sat, 28 Dec 2013 12:20:31 +0800 Subject: [PATCH] Mark Harmon GLORY TO MARK HARMON --- plugins/mark.py | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) create mode 100644 plugins/mark.py diff --git a/plugins/mark.py b/plugins/mark.py new file mode 100644 index 0000000..3d186d7 --- /dev/null +++ b/plugins/mark.py @@ -0,0 +1,24 @@ +import random +from util import hook, text + +@hook.command('8ball') +def eightball(input, action=None): + """mark -- Spreads the glory of Mark Harmon""" + responses = [ + "Praise our lord Mark Harmon", + "Have you considered joining the Church of Mark Harmon?", + "M A R K H A R M O N", + "Did you know, Mark Harmon used to be a lifeguard?", + "Mark Harmon is our guide in these dark times.", + "Why not donate to the Church of Mark Harmon and help further our cause?", + "MERK HERMERN", + "Mark Harmon can cut through a hot knife with butter.", + "Mark Harmon can win a game of connect four in only three moves." + "PRAISE MARK HARMON", + "GLORY TO OUR LORD", + "Become a Mark Harmoner today and promote Mark Harmony!", + "The Church of Mark Harmon choir can achieve perfect Mark Harmony." + "Mark!" + ] + + return random.choice(responses)