Skip to content

Instantly share code, notes, and snippets.

@flash007k
Forked from Fazil-vk/Thanos Quotes.js
Last active August 14, 2021 04:21
Show Gist options
  • Save flash007k/4e7914e65a03d1b3321b8cde69fe03ff to your computer and use it in GitHub Desktop.
Save flash007k/4e7914e65a03d1b3321b8cde69fe03ff to your computer and use it in GitHub Desktop.
const Asena = require('../events');
const {MessageType} = require('@adiwajshing/baileys');
const Config = require('../config'); // +
let wk = Config.WORKTYPE == 'private' ? true : false // +
Asena.addCommand({pattern: 'quote', fromMe: true}, (async (message, match) => {
var r_text = new Array ();
r_text[0] = "*Little one, it’s a simple calculus. This universe is finite, its resources, finite. If life is left unchecked, life will cease to exist. It needs correcting.*";
r_text[1] = "*When I’m done, half of humanity will still exist. Perfectly balanced, as all things should be. I hope they remember you.*";
r_text[2] = "*You should choose your words wisely.*";
r_text[3] = "*I finally rest, and watch the sun rise on a grateful universe. The hardest choices require the strongest wills.*";
r_text[4] = "*I will shred this universe down to it’s last atom and then, with the stones you’ve collected for me, create a new one. It is not what is lost but only what it is been given… a grateful universe.*";
r_text[5] = "*In my heart, I knew you still cared. But one ever knows for sure. Reality is often disappointing.*";
r_text[6] = "*In all my years of conquest, violence, slaughter, it was never personal. But I’ll tell you now, what I’m about to do to your stubborn, annoying little planet… I’m gonna enjoy it. Very, very much.*";
r_text[7] = "*You’re strong. But I could snap my fingers, and you’d all cease to exist.*";
r_text[8] = "*You’re strong. Me… You’re generous. Me… But I never taught you to lie. That’s why you’re so bad at it. Where is the Soul Stone?*";
r_text[9] = "*Today, I lost more than you can know. But now is no time to mourn. Now is no time at all.*";
r_text[10] = "*I know what it’s like to lose. To feel so desperately that you’re right, yet to fail nonetheless.*";
r_text[11] = "*I would death to imprisonment! Pride: my one fatal flaw.*";
r_text[12] = "*Dread it. Run from it. Destiny still arrives. Or should I say, I have.*";
r_text[13] = "*Your politics bore me. Your demeanor is that of a pouty child. Return me again empty-handed… And I will bathe the stairways in your blood.*";
r_text[14] = "*I ignored my destiny once, I can not do that again. Even for you. I’m sorry Little one.*";
r_text[15] = "*Look. Pretty, isn’t it? Perfectly balanced. As all things should be.*";
r_text[16] = "*Fun isn’t something one considers when balancing the universe. But this... does put a smile on my face.*";
r_text[17] = "*You’re a great fighter, Gamora. Come. Let me help you.*";
r_text[18] = "*Destiny waits for no man. Not even one who shall bring the universe to its knees.*";
r_text[19] = "*At random. Dispassionate, fair. The rich and poor alike. And they called me a madman. And what I predicted, came to pass.*";
r_text[20] = "*I did not ask for your trust. I demand only your obedience.*";
r_text[21] = "*I am.. inevitable!*";
var i = Math.floor(22*Math.random())
await message.sendMessage(r_text[i]);
}));
Asena.addCommand({pattern: 'infoquote', fromMe: true}, (async (message, match) => {
await message.sendMessage("*Codded by @phaticusthiccy*\n💻Usage: *.quote*\nℹ️Desc: 🇹🇷 Thanos'un en iyi repliklerinden rastgele seçer.\n\n💻Usage: *.quote*\nℹ️Desc: 🇬🇧 Choose randomly from Thanos's best quotes.")
}));
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment