Got everything ready for 5.3.4
This commit is contained in:
parent
5ee53a6869
commit
5a591813e5
4 changed files with 19 additions and 3 deletions
Social
|
@ -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
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue