Created
September 10, 2012 18:01
-
-
Save anonymous/3692569 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
def swear(self, mess, args): | |
"swears randomley from a list of high level swear words" | |
swears = ["neech","kameen","kuttey", "howley", "saaley", "monkey", " kaachina vennela to tea pettukune mohavu nuvvu nu ","thitlu adukkunne mohamu nuvvoonu ", " currentu teegaki uyyala eskune ooge mohavu nuvvu" , "donkey", "vudathalu patte mokam", "chapathi mokam", "washbasin lo chepalu patte mokam", "gaali vaanalo visnakarrlu ammukune mokam", "Chunchu mokam", "ghootley", "jaffa", "tussha", "daffa", "jumper mein bumper", "panther pagdi" ,"lapaki paapa" ] | |
from random import choice | |
self.message_queue.append(choice(swears)+ " " + choice(swears) + " " + choice(swears) + " "+ args) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment