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