From 77f1321b00f8c2010a7a5425da1acbdad627b153 Mon Sep 17 00:00:00 2001 From: barelyprofessional <150058423+barelyprofessional@users.noreply.github.com> Date: Fri, 12 Sep 2025 13:35:59 -0500 Subject: [PATCH] Added juicesports --- KfChatDotNetBot/Commands/MemeCommands.cs | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) diff --git a/KfChatDotNetBot/Commands/MemeCommands.cs b/KfChatDotNetBot/Commands/MemeCommands.cs index db71d49..f57c930 100644 --- a/KfChatDotNetBot/Commands/MemeCommands.cs +++ b/KfChatDotNetBot/Commands/MemeCommands.cs @@ -304,4 +304,21 @@ public class AlmanacCommand : ICommand } await botInstance.SendChatMessageAsync($"@{user.KfUsername}, {text.Value}", true); } +} + +public class JuiceSportsCommand : ICommand +{ + public List Patterns => [ + new Regex("^juicesports", RegexOptions.IgnoreCase) + ]; + public string? HelpText => "Juicesports LFG!"; + public UserRight RequiredRight => UserRight.Loser; + public TimeSpan Timeout => TimeSpan.FromSeconds(10); + public RateLimitOptionsModel? RateLimitOptions => null; + public async Task RunCommand(ChatBot botInstance, MessageModel message, UserDbModel user, GroupCollection arguments, CancellationToken ctx) + { + await botInstance.SendChatMessageAsync(":juice: [img]https://i.ddos.lgbt/u/3GJtHq.gif[/img] :juice: [br]⠀⠀⠀⠀⠀⠀⠀" + + "[img]https://i.ddos.lgbt/u/KAwWMW.webp[/img][br]⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀" + + "[img]https://i.ddos.lgbt/u/uCuSOw.gif[/img][br]", true); + } } \ No newline at end of file