Added more commands.
This commit is contained in:
parent
5a591813e5
commit
1bb9cac966
2 changed files with 63 additions and 1 deletions
|
@ -59,7 +59,18 @@ public sealed class Social : Canary
|
||||||
case ImageType.poke:
|
case ImageType.poke:
|
||||||
emb.WithDescription($"{ctx.User.Mention} booped {text}");
|
emb.WithDescription($"{ctx.User.Mention} booped {text}");
|
||||||
break;
|
break;
|
||||||
|
case ImageType.yeet:
|
||||||
|
emb.WithDescription($"{ctx.User.Mention} threw {text}, watch them fly.");
|
||||||
|
break;
|
||||||
|
case ImageType.wink:
|
||||||
|
emb.WithDescription($"{ctx.User.Mention} winked at {text}");
|
||||||
|
break;
|
||||||
|
case ImageType.cringe:
|
||||||
|
emb.WithDescription($"{ctx.User.Mention} cringed at {text} they probably posted cringe.");
|
||||||
|
break;
|
||||||
|
case ImageType.bully:
|
||||||
|
emb.WithDescription($"{ctx.User.Mention} bullied {text}, you are a bad person.");
|
||||||
|
break;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
await ctx.Channel.EmbedAsync(emb);
|
await ctx.Channel.EmbedAsync(emb);
|
||||||
|
@ -91,6 +102,10 @@ public sealed class Social : Canary
|
||||||
cuddle,
|
cuddle,
|
||||||
slap,
|
slap,
|
||||||
poke,
|
poke,
|
||||||
|
yeet,
|
||||||
|
wink,
|
||||||
|
cringe,
|
||||||
|
bully,
|
||||||
waifu,
|
waifu,
|
||||||
neko,
|
neko,
|
||||||
shinobu,
|
shinobu,
|
||||||
|
@ -140,6 +155,30 @@ public sealed class Social : Canary
|
||||||
{
|
{
|
||||||
await service.SendWaifuPicsEmbedAsync(ctx, ImageType.poke, text);
|
await service.SendWaifuPicsEmbedAsync(ctx, ImageType.poke, text);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
[cmd]
|
||||||
|
public async Task Yeet(AnyContext ctx, [leftover] string text = null)
|
||||||
|
{
|
||||||
|
await service.SendWaifuPicsEmbedAsync(ctx, ImageType.yeet, text);
|
||||||
|
}
|
||||||
|
|
||||||
|
[cmd]
|
||||||
|
public async Task Wink(AnyContext ctx, [leftover] string text = null)
|
||||||
|
{
|
||||||
|
await service.SendWaifuPicsEmbedAsync(ctx, ImageType.wink, text);
|
||||||
|
}
|
||||||
|
|
||||||
|
[cmd]
|
||||||
|
public async Task Cringe(AnyContext ctx, [leftover] string text = null)
|
||||||
|
{
|
||||||
|
await service.SendWaifuPicsEmbedAsync(ctx, ImageType.cringe, text);
|
||||||
|
}
|
||||||
|
|
||||||
|
[cmd]
|
||||||
|
public async Task Bully(AnyContext ctx, [leftover] string text = null)
|
||||||
|
{
|
||||||
|
await service.SendWaifuPicsEmbedAsync(ctx, ImageType.bully, text);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
public sealed class Images(SocialService service) : Canary
|
public sealed class Images(SocialService service) : Canary
|
||||||
|
|
|
@ -39,6 +39,29 @@ boop:
|
||||||
args:
|
args:
|
||||||
- "@someone"
|
- "@someone"
|
||||||
|
|
||||||
|
yeet:
|
||||||
|
desc: "Yeet one of your friends."
|
||||||
|
args:
|
||||||
|
- ""
|
||||||
|
- "@someone"
|
||||||
|
|
||||||
|
wink:
|
||||||
|
desc: "Wink at your friends."
|
||||||
|
args:
|
||||||
|
- ""
|
||||||
|
- "@someone"
|
||||||
|
|
||||||
|
cringe:
|
||||||
|
desc: "For when that one friend is being cringe."
|
||||||
|
args:
|
||||||
|
- ""
|
||||||
|
- "@someone"
|
||||||
|
|
||||||
|
bully:
|
||||||
|
desc: "Bully your friends."
|
||||||
|
args:
|
||||||
|
- "@someone"
|
||||||
|
|
||||||
waifu:
|
waifu:
|
||||||
desc: "Spawn a random waifu!"
|
desc: "Spawn a random waifu!"
|
||||||
args:
|
args:
|
||||||
|
|
Loading…
Add table
Reference in a new issue