diff --git a/cogs/memes.py b/cogs/memes.py index 10482264..9831f0a8 100644 --- a/cogs/memes.py +++ b/cogs/memes.py @@ -374,20 +374,36 @@ def c_to_k(c): @commands.command(hidden=True) async def warm(self, ctx: KurisuContext, u: discord.Member): """Warms a user :3""" - celsius = random.randint(38, 100) + celsius = random.randint(38, 50) fahrenheit = self.c_to_f(celsius) kelvin = self.c_to_k(celsius) await self._meme(ctx, f"{u.mention} warmed. User is now {celsius}°C ({fahrenheit}°F, {kelvin}K).", True) + @commands.command(hidden=True) + async def burn(self, ctx: KurisuContext, u: discord.Member): + """Burns a user :fire:""" + celsius = random.randint(51, 150) + fahrenheit = self.c_to_f(celsius) + kelvin = self.c_to_k(celsius) + await self._meme(ctx, f"{u.mention} burned. User is now a crispy {celsius}°C ({fahrenheit}°F, {kelvin}K).", True) + # adding it here because It's pretty much the same code @commands.command(hidden=True, aliases=["cool"]) async def chill(self, ctx: KurisuContext, u: discord.Member): """Cools a user :3""" - celsius = random.randint(-273, 34) + celsius = random.randint(-40, 34) fahrenheit = self.c_to_f(celsius) kelvin = self.c_to_k(celsius) await self._meme(ctx, f"{u.mention} cooled. User is now {celsius}°C ({fahrenheit}°F, {kelvin}K).", True) + @commands.command(hidden=True) + async def freeze(self, ctx: KurisuContext, u: discord.Member): + """Freezes a user :3""" + celsius = random.randint(-273, -41) + fahrenheit = self.c_to_f(celsius) + kelvin = self.c_to_k(celsius) + await self._meme(ctx, f"{u.mention} frozen. User is now {celsius}°C ({fahrenheit}°F, {kelvin}K). Wait how is that possible?", True) + # End code from https://github.com/reswitched/robocop-ng @commands.command(hidden=True)