Got everything ready for 5.3.4

This commit is contained in:
Toastie 2025-01-14 23:04:58 +13:00
parent 5ee53a6869
commit 5a591813e5
Signed by: toastie_t0ast
GPG key ID: 0861BE54AD481DC7
4 changed files with 19 additions and 3 deletions
Social

View file

@ -54,7 +54,10 @@ public sealed class Social : Canary
emb.WithDescription($"{ctx.User.Mention} cuddled {text}");
break;
case ImageType.slap:
emb.WithDescription($"{ctx.User.Mention} slapped {text}");
emb.WithDescription($"{ctx.User.Mention} slapped {text}, they probably deserved it.");
break;
case ImageType.poke:
emb.WithDescription($"{ctx.User.Mention} booped {text}");
break;
}
@ -87,6 +90,7 @@ public sealed class Social : Canary
wave,
cuddle,
slap,
poke,
waifu,
neko,
shinobu,
@ -130,6 +134,12 @@ public sealed class Social : Canary
{
await service.SendWaifuPicsEmbedAsync(ctx, ImageType.slap, text);
}
[cmd]
public async Task Boop(AnyContext ctx, [leftover] string text = null)
{
await service.SendWaifuPicsEmbedAsync(ctx, ImageType.poke, text);
}
}
public sealed class Images(SocialService service) : Canary