# Made by @e3ris for Ultroid
# < https://github.com/TeamUltroid/Ultroid >

"""
✘ **Plugin to Rant/insult Someone >.<**

✘ **CMD :**
>> `{i}rant`
"""

from random import randint, choice

insulty = [
    "I'm not saying you're stupid, I'm just saying you've got bad luck when it comes to thinking.",
    "Zombies eat brains... you're safe.",
    "Try jumping from a hundred story building but you can do it only once.",
    "Bot rule 420 section 69 prevents me from replying to stupid nubfuks like you.",
    "Active Volcano is the best swimming pool for you.",
    "Pick up a gun and shoot yourself.",
    "I heard phogine is poisonous but i guess you wont mind inhaling it for fun.",
    "Stop talking BS and jump in front of a running bullet train.",
    "Stupidity is not a crime so you are free to go.",
    "You should Volunteer for target in an firing range.",
    "You could make a world record by jumping from a plane without parachute.",
    "Shock me, say something intelligent.",
    "Try bathing with Hydrochloric Acid instead of water.",
    "You should paint yourself red and run in a bull marathon.",
    "Everyone has the right to be stupid but you are abusing the privilege.",
    "Do you realize you are making a fool of yourself? Apparently not.",
    "I'm sorry I hurt your feelings when I called you stupid. I thought you already knew that.",
    "You should donate your brain seeing that you never used it.",
    "You can be the first person to step on sun. Have a try.",
    "God was searching for you. You should leave to meet him.",
    "I heard phogine is poisonous but i guess you wont mind inhaling it for fun.",
    "Alas! Your neurotransmitters are no more working.",
    "What language are you speaking? Cause it sounds like bullshit.",
    "How about you stop breathing for like 1 day? That'll be great.",
    "Try jumping from a hundred story building but you can do it only once.",
    "You can stay underwater for the rest of your life without coming back up.",
    "Head shots are fun. Get yourself one.",
    "You should try swimming with great white sharks.",
    "Brains aren't everything. In your case they're nothing.",
    "You are proof that evolution CAN go in reverse.",
    "Try this: if you hold your breath underwater for an hour, you can then hold it forever.",
    "Owww ... Such a stupid idiot.",
    "Don't drink and type.",
    "Command not found. Just like your brain.",
    "When your mom dropped you off at the school, She got a ticket for littering.",
    "Try provoking a tiger while you both are in a cage."
]


@ultroid_cmd(pattern="rant")
async def insult(e):
    c = randint(1, 2)
    if c == 1:
        return await eor(e, f"__{choice(insulty)}__")
    else:
        x = await e.client.get_messages(
            "e3ris_db", ids=randint(5971, 5992)
        )
        msg = str(x.text) if x else "#error. kbye"
        return await eor(e, msg)