def rquote(self, ctx):
"""From a list of random quotes, it says one."""
quotes = [
'YOU THOUGHT THIS COMMENT WOULD MENTION [name] BUT IT WAS I, DIO!',
'Even [name] didn\'t understand the usage of this command, However, [name] knew the truth! This command existed in order to be fun! The quotes that fueled the fun made this command exist! This command makes appear a random quote! he said.',
'DID YOU QUOTE THIS TOO, [name]!? TELL ME!?\nWhat are you even asking? i settled this quote and you walked right into it!',
'Even a bastard like me spot true evil when it sees it, true evil are those who use the weak for their own gain! Especially a innocent woman! And that is exactly what you\'ve done, isnt it [name]?!, thats why... I\'ll judge you myself!',
'What is a [name]? A miserable little pile of secrets. But enough talk.',
'Thank you [name]! But our Princess is in another castle!',
'This is your fault. I\'m going to kill you. And all the [name] is gone. You don\'t even care, do you?',
'The right man in the wrong place can make all the difference in the [name].',
'I am the great mighty [name], and Im going to throw my shit at you.',
'Why, that\'s the second biggest [name] head I\'ve ever seen!',
'Look behind you, a three headed [name]!',
'In the year 200x a super robot named [name] was created.',
'[name] has been kidnapped by ninjas. Are you a bad enough dude to rescue the president?',
'You were almost a [name] sandwich!',
'All your [name] are belong to us.']
i = random.randrange(len(quotes))
quote = quotes[i]
x = random.randrange(len(ctx.message.server.members))
user = list(ctx.message.server.members)[x]
fquote = quote.replace('[name]', user.name)
await self.bot.say(fquote)
评论列表
文章目录