This repository was archived by the owner on Jan 19, 2025. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 205
Expand file tree
/
Copy pathcommands.json
More file actions
1637 lines (1637 loc) · 64.1 KB
/
Copy pathcommands.json
File metadata and controls
1637 lines (1637 loc) · 64.1 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
{
"neko": {
"commandDescription": "Fetches a random neko girl (lewd if the channel is NSFW) and displays it.",
"hereIsYour_neko": "Here's your neko!",
"hereIsYour_lewd": "Here's your lewd neko!"
},
"waifu": {
"commandDescription": "Fetches a random waifu (lewd if the channel is NSFW) and displays it.",
"hereIsYour_sfw": "Here's your waifu!",
"hereIsYour_nsfw": "Here's your lewd waifu!"
},
"reverse": {
"commandDescription": "Reverses the text.",
"commandUsage": "<text>",
"noSentence": "You have to give me some text to reverse!"
},
"djsdocs": {
"commandDescription": "Shows information from the discord.js documentation.",
"commandUsage": "<query>",
"noQueryProvided": "You have to give me a search query!"
},
"hmmm": {
"commandDescription": "Shows a random image from /r/hmmm."
},
"smart": {
"commandDescription": "Shows the Roll Safe meme."
},
"softwaregore": {
"commandDescription": "Shows a random image from /r/softwaregore."
},
"thinking": {
"commandDescription": "Shows a random :thinking: image from /r/thinking."
},
"adorable": {
"commandDescription": "Generates an adorable avatar."
},
"avatar": {
"commandDescription": "Shows yours or someone else's avatar.",
"commandUsage": "[user]",
"someonesAvatar": "{{- user}}'s avatar"
},
"dog": {
"commandDescription": "Fetches a random dog and displays it. Woof!",
"hereIsYourDog": "Here's your dog!"
},
"invite": {
"commandDescription": "Shows Switchblade's invite link.",
"clickHere": "Click here to invite me to your server",
"noteThat": "Note that you need the **$t(permissions:MANAGE_GUILD)** permission in order to invite bots."
},
"ping": {
"commandDescription": "Checks if the bot is online."
},
"hibp": {
"commandDescription": "Checks if an email has been found in a data breach or paste.",
"commandUsage": "<type> <query>",
"noEmail": "You have to give me a valid email address!",
"notBreached": "Good news! - No pwnage found!",
"breached": "Oh no! - Pwned!",
"andMore": "...and **{{count}}** more.",
"subcommands": {
"breach": {
"commandDescription": "Checks if an email has been found in a data breach.",
"commandUsage": "<email>",
"pwnedInSingular": "Pwned in one breach.",
"pwnedInPlural": "Pwned in **{{count}}** breaches.",
"notFoundBreach": "Your email wasn't found in any data breach."
},
"paste": {
"commandDescription": "Checks if an email has been found in a data paste.",
"commandUsage": "<email>",
"pwnedInSingular": "Pwned in one paste.",
"pwnedInPlural": "Pwned in **{{count}}** pastes.",
"notFoundPaste": "Your email wasn't found in any data paste."
}
}
},
"github": {
"commandDescription": "Searches for a user, repository or an organization on GitHub.",
"commandUsage": "<type> <query>",
"serviceName": "GitHub",
"subcommands": {
"user": {
"commandDescription": "Searches for a user on GitHub.",
"commandUsage": "<username>",
"noUser": "You have to give me a valid user!",
"userNotFound": "User not found.",
"moreRepos": "...and {{repos}} more repositories.",
"noBio": "This user doesn't have a biography.",
"followers": "Followers",
"following": "Following",
"createdAt": "Account created at",
"repositories": "Repositories ({{count}})"
},
"repository": {
"commandDescription": "Searches for a repository on GitHub.",
"commandUsage": "<repository name>",
"noDescription": "This repository has no description.",
"watchers": "Watchers",
"stars": "Stars",
"forks": "Forks",
"license": "License"
},
"organization": {
"commandDescription": "Searches for an organization on GitHub.",
"commandUsage": "<organization name>",
"noOrg": "You have to give me a valid organization.",
"orgNotFound": "Organization not found.",
"moreRepos": "...and {{repos}} more repositories.",
"noDescription": "This organization doesn't have a description.",
"members": "Members",
"createdAt": "Organization created at",
"repositories": "Repositories ({{count}})"
}
}
},
"spotify": {
"commandDescription": "Searches for a song, playlist, album or an artist on Spotify, or displays information about a user.",
"commandUsage": "<type> <query>",
"serviceName": "Spotify",
"album": "Album",
"genres": "Genres",
"artist": "Artist",
"artistPlural": "Artists",
"track": "Song",
"trackPlural": "Songs",
"albumPlural": "Albums",
"moreTracks": "...and {{tracks}} more songs.",
"moreAlbums": "...and {{albums}} more albums.",
"followers": "Followers",
"followersCount": "{{followers}} followers",
"subcommands": {
"track": {
"commandDescription": "Searches for a song on Spotify.",
"commandUsage": "<song>",
"trackInfo": "Song information"
},
"album": {
"commandDescription": "Searches for an album on Spotify.",
"commandUsage": "<album>",
"albumInfo": "Album information",
"albumType": "Album type",
"types": {
"single": "Single",
"compilation": "Compilation"
}
},
"artist": {
"commandDescription": "Searches for an artist on Spotify.",
"commandUsage": "<artist>",
"artistInfo": "Artist information"
},
"playlist": {
"commandDescription": "Searches for a playlist on Spotify.",
"commandUsage": "<playlist>",
"playlistInfo": "Playlist information",
"createdBy": "Created by"
},
"user": {
"commandDescription": "Gets information about a user on Spotify.",
"commandUsage": "<user>",
"notFound": "User not found.",
"userInfo": "User information"
}
}
},
"copypasta": {
"commandDescription": "Shows a random text from /r/copypasta."
},
"owo": {
"commandDescription": "Owoifies your text.",
"commandUsage": "<text>",
"missingSentence": "You have to give me some text to owoify!",
"tooLongTitle": "Your text is longer than 200 characters!",
"tooLongDescription": "Try shortening your text or separate it into multiple commands!"
},
"piratespeak": {
"commandDescription": "Pirateifies your text.",
"commandUsage": "<text>",
"missingSentence": "You have to give me some text to pirateify!"
},
"daily": {
"commandDescription": "Claims your daily reward.",
"alreadyClaimedTitle": "Already claimed",
"alreadyClaimedDescription": "You've already claimed your daily reward. You can do it again in **{{time}}**.",
"claimedSuccessfully": "You've received **$t(commons:currencyWithCount, { 'count': {{count}} })** as your daily reward!"
},
"money": {
"commandDescription": "Shows how many $t(commons:currency_plural) someone has.",
"commandUsage": "[user to lookup]",
"youHave": "You have **$t(commons:currencyWithCount, { 'count': {{count}} })** in your account.",
"someoneHas": "{{- user}} has **$t(commons:currencyWithCount, { 'count': {{count}} })** in their account."
},
"kiss": {
"commandDescription": "Kisses someone.",
"commandUsage": "<user to kiss>",
"noMention": "You have to mention someone.",
"notYourself": "You can't kiss yourself!",
"success": "{{- kisser}} kissed {{- kissed}}."
},
"handshake": {
"commandDescription": "Shakes hands with someone.",
"commandUsage": "<user to shake hands with>",
"noMention": "You have to mention someone!",
"notYourself": "You can't shake hands with yourself!",
"success": "{{- handshaker}} shook hands with {{- handshaked}}"
},
"triggered": {
"commandDescription": "Triggers something or someone.",
"commandUsage": "[image link]"
},
"8ball": {
"commandDescription": "Asks the magic 8-Ball about something.",
"commandUsage": "<question>",
"noQuestion": "You have to ask me something!",
"answers": {
"0": "It is certain.",
"1": "It is decidedly so.",
"2": "Without a doubt!",
"3": "Yes definitely!",
"4": "You may rely on it.",
"5": "As I see it, yes!",
"6": "Most likely.",
"7": "Outlook good!",
"8": "Yes.",
"9": "Signs point to yes.",
"10": "Reply hazy try again!",
"11": "Ask again later.",
"12": "Better not tell you now.",
"13": "Cannot predict now.",
"14": "Concentrate and ask again!",
"15": "Don't count on it.",
"16": "My reply is no.",
"17": "My sources say no.",
"18": "Outlook not so good.",
"19": "Very doubtful."
}
},
"fliptext": {
"commandDescription": "Flips the text upside down.",
"commandUsage": "<text to be flipped>",
"noSentence": "You have to give me some text to flip!"
},
"npm": {
"commandDescription": "Shows information about an NPM package.",
"commandUsage": "<package name>",
"noDescription": "No description provided.",
"notFound": "Package not found.",
"noNameProvided": "You have to give me a package name!",
"lastPublish": "Last publish",
"install": "Install",
"keywords": "Keywords",
"published": "**{{publisher}}** published `{{version}}` {{timeAgo}}"
},
"poll": {
"commandDescription": "Creates a poll.",
"commandUsage": "\"<poll title>\" [\"option 1\" \"option 2\" \"option 3\" \"...\"]",
"noQuestion": "You have to give me something to be voted!",
"tooManyOptions": "You can't exceed {{maxOptions}} options!"
},
"nowplaying": {
"commandDescription": "Shows the name of the current song."
},
"pause": {
"commandDescription": "Pauses or resumes the music playback."
},
"createemoji": {
"commandDescription": "Creates an emoji.",
"commandUsage": "<image link> <name of the emoji>",
"noImage": "You have to give me an image link.",
"noName": "You have to give me a name for the emoji.",
"created": "**{{emoji.name}}** has been created .",
"error": "An error has occurred while creating the emoji."
},
"deleteemoji": {
"commandDescription": "Deletes an emoji.",
"commandUsage": "<:emoji:|emoji name>",
"noEmoji": "You have to give me the emoji you want to delete.",
"deleted": "**{{emoji.name}}** has been deleted.",
"error": "An error has occurred while deleting emoji."
},
"play": {
"commandDescription": "Plays a certain song or adds it to the queue.",
"commandUsage": "<song name or URL>",
"noTrackIdentifier": "You have to give me a song name or URL!"
},
"queue": {
"commandDescription": "Shows the current queue.",
"clearAdvice": "You can clear the queue using `{{usage}}`.",
"subcommands": {
"clear": {
"commandDescription": "Clears the queue.",
"queueCleared": "The queue has been cleared!"
},
"shuffle": {
"commandDescription": "Shuffles the queue.",
"queueShuffled": "The queue has been shuffled!"
},
"remove": {
"commandDescription": "Removes a song from the queue.",
"commandUsage": "<music number>",
"missingIndexParameter": "You have to give me the number of the song you want to remove from the queue.",
"songRemoved": "{{- songName}} has been removed from the queue!"
},
"jump": {
"commandDescription": "Jumps to a specific song in the queue.",
"commandUsage": "<music number>",
"missingIndexParameter": "You have to give me the number of the song you want to jump to.",
"jumpedToSong": "Jumped to {{- songName}}."
}
}
},
"skip": {
"commandDescription": "Skips the current song."
},
"stop": {
"commandDescription": "Stops the music playback.",
"stopped": "Playback has been stopped, leaving the voice channel."
},
"volume": {
"commandDescription": "Adjusts the volume of the music playback.",
"commandUsage": "<0-150>",
"missingVolumeParameter": "You have to give me a volume level!",
"invalidVolumeParameter": "You have to give me a valid number!",
"notPlaying": "Volume can't be adjusted while not playing anything!",
"volumeSet": "Volume set to {{volume}}%"
},
"help": {
"commandDescription": "Shows information about commands or lists them.",
"commandUsage": "[command name]",
"listTitle": "Available commands",
"prefix": "Prefix",
"youCanUse": "You can also use {{- botMention}} as a prefix.",
"specificInformation": "Type {{helpString}} for command specific information.",
"aliases": "Aliases",
"subcommands": "Subcommands",
"permissions": "Permissions",
"botPermissions": "Bot permissions",
"flags": "Flags",
"noDescriptionProvided": "No description provided.",
"noUsageProvided": "No usage provided.",
"commandNotFound": "I couldn't find any command with that name."
},
"pay": {
"commandDescription": "Pays $t(commons:currency_plural) to a user.",
"commandUsage": "<@member> <value>",
"noMember": "You have to mention someone!",
"noValue": "You have to give me a valid number of $t(commons:currency_plural) to send!",
"notEnoughMoney": "You don't have enough $t(commons:currency_plural) for that!",
"cantPayYourself": "You can't pay yourself!",
"transactionSuccessful": "You sent **{{value}} $t(commons:currency{{type}})** to {{receiver}}."
},
"xkcd": {
"commandDescription": "Shows an XKCD webcomic.",
"commandUsage": "[#|\"latest\"]",
"invalidArgument": "You have to give me a valid XKCD number!",
"notFound": "XKCD not found."
},
"xkcd37": {
"commandDescription": "Whenever anyone calls something an [adjective]-ass [noun], moves the hyphen one word to the right.",
"commandUsage": "<text>"
},
"math": {
"commandDescription": "Evaluates a math expression.",
"commandUsage": "<expression>",
"needMathExpression": "You have to give me a math expression to evaluate!",
"invalidMathExpression": "Invalid math expression.",
"result": "Result: `{{result}}`"
},
"osu": {
"commandDescription": "Searches for a profile or a beatmap on osu!",
"commandUsage": "<type> <query>",
"subcommands": {
"player": {
"commandDescription": "Searches for a profile on osu!",
"commandUsage": "[profile name or id]",
"noPlayer": "You have to give me a valid osu! profile name or ID.",
"level": "Level **{{number}}**",
"joinedAt": "Joined at **{{date}}** ({{timeAgo}})",
"globalRanking": "Global Ranking: **#{{rank}}**",
"countryRanking": "Country Ranking: **#{{rank}}**",
"rankedScore": "Ranked Score: **{{rankedScore}}**",
"playTime": "Played for **{{time}}** - **{{pp}}** pp",
"totalScore": "Total Score: **{{totalScore}}**",
"hitAccuracy": "Hit Accuracy: **{{accuracy}}%**",
"playCount": "Play Count: **{{playCount}}**",
"totalHits": "Total Hits: **{{totalHits}}** (**{{300}}** {{emoji300}}, **{{100}}** {{emoji100}}, **{{50}}** {{emoji50}})",
"topScores": "**{{user}}**'s top scores:",
"recentPlays": "**{{user}}**'s most recent plays in the last 24 hours:",
"playerNotFound": "Profile not found."
},
"beatmap": {
"commandDescription": "Searches for a beatmap or beatmap set on osu!",
"commandUsage": "<beatmap or beatmap set id>",
"noBeatmap": "You have to give me a valid beatmap or beatmap set ID.",
"starDifficulty": "Star Difficulty: **{{difficulty}}**",
"successRate": "Success Rate: **{{rate}}%** ({{successfulPlays}} / {{totalPlays}})",
"mappedBy": "Mapped by {{mapper}}",
"lastUpdate": "Last update at **{{date}}** ({{timeAgo}})",
"approved": "Approved at **{{date}}** ({{timeAgo}})",
"tags": "Tags: **{{tags}}**",
"download": "[Download beatmap]({{link}})",
"downloadNoVideo": "[Download without video]({{link}})",
"topScores": "Top scores:",
"topScoreSelf": "Your top score ({{date}})"
}
}
},
"stoptyping": {
"commandDescription": "Forces the bot to stop typing.",
"tryingToStop": "Trying to stop typing..."
},
"isitup": {
"commandDescription": "Checks whether a website is up or down.",
"commandUsage": "<address>",
"isUp": "That website is up!",
"isDown": "That website is down.",
"details": "It took **{{body.response_time}}ms** for **{{body.response_ip}}** to respond with HTTP code **{{body.response_code}}**.",
"noWebsite": "You have to give me a website to check!"
},
"coinflip": {
"commandDescription": "Flips a coin.",
"landed": "I've flipped a coin and it landed **$t(commons:{{chosenSide}})**!"
},
"betflip": {
"commandDescription": "Bets $t(commons:currency_plural) on a coin flip.",
"commandUsage": "<value to bet> <heads | tails>",
"victory": "Yay, it landed **$t(commons:{{chosenSide}})**, so you won **$t(commons:currencyWithCount, { 'count': {{count}} })**!",
"loss": "Uh-oh, it landed **$t(commons:{{chosenSide}})**, so you lost **$t(commons:currencyWithCount, { 'count': {{count}} })**.",
"noBetValue": "You have to give me a value to bet!",
"noCoin": "You have to give me a coin side to bet on!"
},
"botinfo": {
"commandDescription": "Sends information about me.",
"hello": "Hello, my name is **{{user.username}}**, and I'm a multi-purpose Discord bot, built to help you with all of your server problems and needs.",
"statistics": "I've been up for **{{uptime}}**, helping **{{guilds}} servers** and **{{users}} users** with **{{commands}} commands**. Currently running on **[Node.js {{nodeVersion}}](https://nodejs.org)** and **[discord.js v{{Discord.version}}](https://discord.js.org)**.",
"links": "Useful links",
"inviteLink": "{{botBadge}} **[Invite me to your server](https://invite.switchblade.xyz)**",
"supportServer": "{{discordLogo}} **[Join my support server](https://support.switchblade.xyz)**",
"translate": "{{crowdinLogo}} **[Translate me to your language](https://translate.switchblade.xyz)**",
"github": "{{githubLogo}} **[GitHub repository](https://github.com/SwitchbladeBot/switchblade)**",
"website": "{{switchbladeLogo}} **[My Website](https://switchblade.xyz)**",
"openCollective": "{{openCollectiveLogo}} **[Support me](https://opencollective.com/switchblade)**"
},
"guildinfo": {
"commandDescription": "Sends information about the current or another server.",
"commandUsage": "[server id]",
"id": "ID",
"owner": "Owner",
"region": "Region",
"channels": "Channels **({{count}})**",
"textChannels": "Text: **{{count}}**",
"voiceChannels": "Voice: **{{count}}**",
"createdAt": "Created At",
"joinedAt": "Joined At",
"members": "Members **({{count}})**",
"streaming": "Streaming: **{{count}}**",
"online": "Online: **{{count}}**",
"idle": "Idle: **{{count}}**",
"dnd": "Do Not Disturb: **{{count}}**",
"offline": "Offline: **{{count}}**",
"users": "Users: **{{count}}**",
"bots": "Bots: **{{count}}**"
},
"country": {
"commandDescription": "Gets information about a country.",
"commandUsage": "<country name or ISO 3166-1 code>",
"noCountry": "You have to give me a country name or ISO 3166-1 country code to get information about.",
"aka": "Also known as: `{{alts}}`",
"languages": "Languages: {{languages}}",
"capital": "Capital: **{{capital}}**",
"region": "Region: **{{region}}** ({{subregion}})",
"population": "Population: **{{population}}**",
"area": "Area: **{{area}} km²**",
"timezones": "Timezones: **{{timezones}}**",
"currencies": "Currencies: {{currencies}}",
"treaties": "Treaties: {{treaties}}"
},
"userinfo": {
"commandDescription": "Sends yours or someone else's user information.",
"online": "{{status}} Online",
"idle": "{{status}} Idle",
"dnd": "{{status}} Do Not Disturb",
"offline": "{{status}} Offline",
"tag": "DiscordTag",
"id": "ID",
"status": "Status",
"createdAt": "Created at",
"joinedAt": "Joined at",
"serversInCommon": "Servers in common ({{count}})",
"memberNumber": "Member #{{count}}"
},
"samp": {
"commandDescription": "Shows information about a GTA San Andreas: Multiplayer server.",
"commandUsage": "<ip>[:port]",
"noIP": "You have to give me an IP!",
"serverUnreachableTitle": "I couldn't reach this server.",
"serverUnreachableDescription": "Check the IP and port, or try again later.",
"address": "Address",
"version": "Version",
"players": "Players",
"map": "Map",
"gameMode": "Game Mode",
"time": "Time"
},
"qrcode": {
"commandDescription": "Generates or reads a QR code.",
"title": "QR Codes",
"subcommands": {
"generate": {
"commandDescription": "Generates a QR code.",
"commandUsage": "<text>",
"noText": " You have to give me some text!"
},
"read": {
"commandDescription": "Reads a QR code.",
"commandUsage": "<image/link>",
"noImage": "You have to give me an image to read.",
"unknownImage": "You have to give me a valid QR code to read."
}
}
},
"strawpoll": {
"commandDescription": "Creates a Straw Poll.",
"commandUsage": "<poll title|<option 1|option 2|option 3...>",
"noParameters": "You have to give me a title and some options!",
"optionsNumberError": "You have to give me a number of options between 2 and 30!",
"clickHere": "Click here to vote"
},
"imageoftheday": {
"commandDescription": "Shows the NASA Image of the Day.",
"embedAuthor": "NASA Image of the Day"
},
"deezer": {
"commandDescription": "Searches for a song, playlist, podcast, album or an artist Deezer, or displays information about a user.",
"commandUsage": "<type> <query>",
"noTrackName": "You have to give me a song name.",
"noTracksFound": "I couldn't find any song with that name.",
"fans": "Fans",
"serviceName": "Deezer",
"fansCount": "{{fans}} fans",
"createdAt": "Created at",
"createdBy": "Created by",
"followers": "Followers",
"following": "Following",
"subcommands": {
"track": {
"commandDescription": "Searches for a song on Deezer.",
"commandUsage": "<song>",
"trackInfo": "Song information"
},
"album": {
"commandDescription": "Searches for an album on Deezer.",
"commandUsage": "<album> [--tracks]",
"albumInfo": "Album information",
"albumTracks": "Album songs"
},
"artist": {
"commandDescription": "Searches for an artist on Deezer.",
"commandUsage": "<artist> [--albums | --related]",
"artistInfo": "Artist information",
"artistAlbums": "Artist albums",
"artistRelated": "Related artists"
},
"playlist": {
"commandDescription": "Searches for a playlist on Deezer.",
"commandUsage": "<playlist> [--tracks]",
"playlistInfo": "Playlist information",
"playlistTracks": "Playlist songs"
},
"podcast": {
"commandDescription": "Searches for a podcast on Deezer.",
"commandUsage": "<podcast> [--episodes]",
"podcastInfo": "Podcast information",
"podcastEpisodes": "Podcast episodes",
"moreEpisodes": "...and {{episodes}} more episodes."
},
"user": {
"commandDescription": "Gets information about a user on Deezer.",
"commandUsage": "<user>",
"userInfo": "User information"
}
}
},
"profile": {
"commandDescription": "Shows yours or someone else's profile.",
"commandUsage": "[user]",
"aboutMe": "About me"
},
"myanimelist": {
"commandDescription": "Searches for an anime on MyAnimeList.",
"commandUsage": "<anime name>",
"noAnime": "You have to give me an anime to search for!",
"score": "Score",
"episodes": "Episodes",
"studio": "Studio",
"studio_plural": "Studios",
"aired": "Aired",
"animeNotFound": "I couldn't find an anime with that name!"
},
"dicksize": {
"commandDescription": "Shows how small your dick is.",
"yourDickSize": "Your Dick Size"
},
"restrictemoji": {
"commandDescription": "Permits, rejects or resets emoji usage permission for a role.",
"addRole": "To permit an emoji usage for a role, use `{{command}} add <emoji> <role>`.",
"removeRole": "To reject an emoji usage for a role, use `{{command}} remove <emoji> <role>`.",
"reset": "To reset emoji usage permission for roles, use `{{command}} reset <emoji>`.",
"subcommands": {
"add": {
"commandDescription": "Permits using an emoji for a role.",
"commandUsage": "<emoji> <role>",
"canUse": "Role `{{role}}` can now use `{{emoji}}`."
},
"remove": {
"commandDescription": "Rejects using an emoji for a role.",
"commandUsage": "<emoji> <role>",
"cantUse": "Role `{{role}}` can't use `{{emoji}}` anymore."
},
"reset": {
"commandDescription": "Resets emoji usage permission for roles which can use an emoji.",
"commandUsage": "<emoji>",
"reset": "Reset emoji usage permission for roles which could use `{{emoji}}`."
}
}
},
"config": {
"commandDescription": "Changes the current server's configuration.",
"title": "Configuration Commands",
"guildLang": "To change the server language, use `{{command}} language <language code>`",
"guildPrefix": "To change the server prefix, use `{{command}} prefix <new prefix>`",
"missingTranslation": "**(A few translations might be missing)**",
"subcommands": {
"language": {
"commandDescription": "Changes the current server language.",
"commandUsage": "<language code>",
"noCode": "You have to give me a language code!",
"availableLanguages": "Available languages",
"changedSuccessfully": "Language changed to `{{lang}}`."
},
"prefix": {
"commandDescription": "Changes the current server prefix.",
"commandUsage": "<new prefix>",
"noPrefix": "You have to give me a prefix!",
"changedSuccessfully": "Prefix changed to `{{prefix}}`."
}
}
},
"cow": {
"commandDescription": "Shows a random ASCII cow."
},
"asciify": {
"commandDescription": "Turns your text into an ASCII art.",
"commandUsage": "<text>",
"noText": "You have to give me some text to asciify!"
},
"hentai": {
"commandDescription": "Sends hentai in an NSFW channel.",
"hereIsYourHentai": "Here's your hentai!"
},
"shiba": {
"commandDescription": "Fetches a random Shiba Inu and displays it. Woof!",
"hereIsYourShiba": "Here's your Shiba!"
},
"lyrics": {
"commandDescription": "Finds the lyrics of a song.",
"commandUsage": "<song name>",
"noLyricsFound": "The provided song's lyrics could not be found.",
"noLyricsFoundPlaying": "The current song's lyrics could not be found.",
"noTrackName": "You have to give me a song name!",
"fullLyrics": "Click here to see the full lyrics"
},
"binary": {
"commandDescription": "Converts your text into binary.",
"commandUsage": "<text>",
"missingText": "You have to give me some text or binary!",
"textToBinary": "In Binary",
"binaryToText": "In Text",
"tooLongTitle": "Your text is longer than 200 characters!",
"tooLongDescription": "Try shortening your text or separate it into multiple commands!"
},
"cowsay": {
"commandDescription": "Turns your text into cowsay.",
"commandUsage": "<text>",
"noText": "You have to give me some text!"
},
"inspirobot": {
"commandDescription": "Shows a random InspiroBot quote.",
"quote": "Here's your InspiroBot quote!"
},
"cat": {
"commandDescription": "Fetches a random cat and displays it. Nya~",
"hereIsYourCat": "Here's your cat!"
},
"i18n": {
"commandDescription": "Shows the link to Switchblade's translation page.",
"translateMe": "**[Translate me to your language](https://translate.switchblade.xyz)**"
},
"beatsaver": {
"commandDescription": "Searches for a Beatmap on Beat Saver.",
"commandUsage": "<beatmap name, song, id, author or uploader>",
"download": "Download",
"details": "Details",
"noQuery": "You have to give me a map name, song, author, id or an uploader.",
"notFound": "No Beatmaps were found."
},
"favcolor": {
"commandDescription": "Sets your profile color.",
"commandUsage": "<#hexcode>",
"changedSuccessfully": "Profile color changed to {{hexcode}}."
},
"rep": {
"commandDescription": "Gives a reputation point to someone.",
"commandUsage": "<user>",
"noMention": "You have to mention someone!",
"reputationPoint": "You gave a reputation point to {{user}}.",
"againIn": "You already gave a reputation point to someone today. You can do it again in **{{time}}**.",
"alreadyGave": "Already gave reputation",
"repYourself": "You can't give a reputation point to yourself!"
},
"personaltext": {
"commandDescription": "Sets a personal text on your profile.",
"commandUsage": "<personal text>",
"noText": "You have to give me some text!",
"tooLongText": "Your text is longer than {{limit}} characters!",
"changedSuccessfully": "Personal text changed!"
},
"guildicon": {
"commandDescription": "Shows the current or another server's icon.",
"iconDescription": "{{guild}}'s icon:",
"noIcon": "This server doesn't have an icon!"
},
"fivem": {
"commandDescription": "Shows information about a FiveM server.",
"commandUsage": "<id>",
"noIP": "You have to give me a valid address (ex. cfx.re/join/o6ppl7)!",
"serverUnreachableTitle": "I couldn't reach this server.",
"serverUnreachableDescription": "Check the address, or try again later.",
"address": "Address",
"players": "Players",
"map": "Map",
"gameMode": "Game Mode",
"gameName": "Game Name",
"noMap": "Default map",
"noGameMode": "None",
"noGameName": "Not found"
},
"emoji": {
"commandDescription": "Enlarges an emoji.",
"commandUsage": "<emoji to enlarge>",
"hereIsYourEmoji": "Here's your emoji!"
},
"clapify": {
"commandDescription": "Clapifies your text.",
"commandUsage": "<text to clapify>",
"missingSentence": "You have to give me some text to clapify!",
"tooLongText": "Your text can't be longer than {{limit}} characters!"
},
"numberfacts": {
"commandDescription": "Shows a fact about a number.",
"commandUsage": "<number>",
"validNumber": "You have to give me a number!",
"anErrorOcurred": "An error has ocurred while fetching a fact for that number. Please try again later."
},
"blacklist": {
"commandDescription": "Adds a user to the blacklist.",
"commandUsage": "<user> <reason>",
"missingUser": "You have to give me a user to blacklist!",
"missingReason": "You have to give me a reason for blacklisting!",
"successTitle": "User added to the blacklist!"
},
"kick": {
"commandDescription": "Kicks a member from this server.",
"commandUsage": "<member> <reason>",
"missingUser": "You have to give me a member to kick!",
"missingReason": "You have to give me a reason for kicking!",
"noPermission": "I'm missing the **$t(permissions:KICK_MEMBERS)** permission to kick this member.",
"successTitle": "Member was kicked!",
"cantKick": "I can't kick this member!"
},
"ban": {
"commandDescription": "Bans a member from this server.",
"commandUsage": "<member> <reason>",
"missingUser": "You have to give me a member to ban!",
"missingReason": "You have to give me a reason for banning!",
"noPermission": "I'm missing the **$t(permissions:BAN_MEMBERS)** permission to ban this member.",
"successTitle": "Member was banned!",
"cantBan": "I can't ban this member!"
},
"softban": {
"commandDescription": "Bans a member, removes all of their messages and then unbans them.",
"commandUsage": "<member> <reason>",
"missingUser": "You have to give me a member to softban!",
"missingReason": "You have to give me a reason for softbanning!",
"noPermission": "I'm missing the **$t(permissions:BAN_MEMBERS)** permission to softban this member.",
"successTitle": "Member was softbanned!",
"cantSoftban": "I can't softban this member!"
},
"unblacklist": {
"commandDescription": "Removes a user from the blacklist.",
"commandUsage": "<user>",
"success": "{{user}} has been removed from the blacklist!",
"missingUser": "You have to give me a user to remove from the blacklist!",
"notBlacklisted": "That user isn't blacklisted."
},
"whyblacklisted": {
"commandDescription": "Shows why someone is blacklisted.",
"commandUsage": "<user>",
"missingUser": "You have to give me a user to check the reason!",
"notBlacklisted": "That user isn't blacklisted.",
"reasonTitle": "{{user}} was blacklisted by {{blacklister}}"
},
"tipsfedora": {
"commandDescription": "Shows the Tips Fedora meme."
},
"leaderboard": {
"commandDescription": "Shows a leaderboard.",
"commandUsage": "<type>",
"title": "Switchblade Leaderboards",
"subcommands": {
"money": {
"commandDescription": "Shows a list of the richest users.",
"title": "Money Leaderboard"
},
"reputation": {
"commandDescription": "Shows a list of the users with the most reputation points.",
"title": "Reputation Leaderboard"
}
}
},
"bolinadegorfe": {
"commandDescription": "Shows the \"boliña de gorfe\" meme from Woody Woodpecker."
},
"eval": {
"commandDescription": "Evaluates a JS expression.",
"commandUsage": "<expression to evaluate>"
},
"clientvalues": {
"commandDescription": "Fetches values from all shards.",
"commandUsage": "<value path>"
},
"oddlysatisfying": {
"commandDescription": "Shows a random image from /r/oddlysatisfying."
},
"geekjokes": {
"commandDescription": "Shows a random geekjoke."
},
"aww": {
"title": "Here is some eyebleach for ya!",
"commandDescription": "Shows a random image from /r/aww."
},
"videochat": {
"commandDescription": "Enables videochat for the voice channel that you're currently connected to and shares a link to it. (Beta feature!)",
"text": "**Click on this link to join the video chat:** `(You must already be in {{channelName}}!)`"
},
"vaporwave": {
"commandDescription": "Vaporwavefies the text.",
"commandUsage": "<text>",
"missingSentence": "You have to give me some text to vaporwavefy!"
},
"leet": {
"commandDescription": "Leetifies the t3xt.",
"commandUsage": "<text>",
"missingSentence": "Y0u h4v3 t0 g1v3 m3 s0m3 t3xt t0 l33t1fy!"
},
"emojify": {
"commandDescription": "Emojifies the text.",
"commandUsage": "<text>",
"missingSentence": "You have to give me some text to emojify!"
},
"fox": {
"commandDescription": "Shows a random image of a fox.",
"hereIsYourFox": "Here's your fox!"
},
"birb": {
"commandDescription": "Shows a random image of a birb.",
"hereIsYourBirb": "Here's your birb!"
},
"loop": {
"commandDescription": "Activates or deactivates the music playback's loop mode."
},
"time": {
"commandDescription": "Get the current time in a specified place.",
"commandUsage": "<timezone>",
"currentTime": "The current time in {{timezone}} is",
"noZone": "You have to give me a place to get the time!",
"notFound": "Couldn't find this place."
},
"vote": {
"commandDescription": "Gives you a bonus for voting on bot lists.",
"howToVote": {
"dbl": "**[Vote on DBL]({{link}})** to claim your bonus."
}
},
"dbl": {
"commandDescription": "Searches for a bot on Discord Bot List.",
"commandUsage": "<bot name>",
"noType": "Please insert a valid type!",
"types": "Types",
"selectResult": "Please send the number of the result! (10 seconds)",
"noBotName": "You have to give me a valid bot name.",
"botNotFound": "Bot not found.",
"results": "Bot results for {{query}}",
"noDescription": "This bot doesn't have a description.",
"prefix": "Prefix",
"library": "Library",
"owner": "Owner",
"ownerPlural": "Owners",
"acceptedAt": "Accepted at",
"servers": "Servers",
"shards": "Shards",
"website": "Website",
"supportServer": "Support Server",
"githubRepository": "GitHub Repository",
"clickHere": "[Click here]({{link}})"
},
"reloadlocales": {
"commandDescription": "Reloads the locales folder.",
"reloaded": "Locales reloaded!"
},
"tesla": {
"commandDescription": "Shows a random image from /r/TeslaPorn."
},
"fursuit": {
"commandDescription": "Shows a random image from /r/fursuit."
},
"parrot": {
"commandDescription": "Shows a random image from /r/partyparrot."
},
"lmgtfy": {
"commandDescription": "Google something for someone that they should have googled.",
"commandUsage": "<query>",
"noQuery": "I can't google something for you without keywords!",
"search": "[This]({{link}}) might help ¯\\_(ツ)_/¯"
},
"twitch": {
"commandDescription": "Searches for a user on Twitch.",
"commandUsage": "<twitch username>",
"noChannel": "You have to give me a valid Twitch username!",
"biography": "Biography",
"noBiography": "This user doesn't have a biography.",
"totalViews": "Total Views",
"streamingTitle": "Streaming {{gameName}}",
"streamingDescription": "**{{title}}** for {{viewers}} viewers",
"followers": "Followers",
"userNotFound": "Twitch user not found!"
},
"minecraft": {
"commandDescription": "Shows information related to Minecraft.",
"commandUsage": "<type> <query>",
"namemcprofile": "NameMC profile (click here)",
"gameName": "Minecraft",
"subcommands": {
"server": {
"commandDescription": "Shows information about a Minecraft server such as number of players and MOTD.",
"commandUsage": "<address>",
"noIP": "You have to give me an address.",
"unknownServer": "Server is offline or doesn't exist.",
"server": "Minecraft Server",
"status": "Status",
"address": "Address",
"players": "Players",
"version": "Version",
"online": "Online",
"offline": "Offline"
},
"skin": {
"commandDescription": "Shows the skin of a Minecraft player.",
"commandUsage": "<username/UUID>",
"noName": "You have to give me a username or a UUID.",
"unknownName": "Name or UUID not found.",
"title": "{{name}}'s skin!"
},
"namehistory": {
"commandDescription": "Shows the previous names of a Minecraft player, by username or UUID.",
"commandUsage": "<username/UUID>",
"noName": "You have to give me a username or a UUID.",
"unknownName": "Name or UUID not found.",
"title": "{{name}}'s name history!",
"originalname": "Original Name"
}
}
},
"kemonomimi": {
"commandDescription": "Shows a random kemonomimi (lewd if the channel is NSFW). (Girls with animal ears)",
"hereIsYour_kemonomimi": "Here's your kemonomimi!",
"hereIsYour_lewdkemo": "Here's your lewd kemonomimi!"
},
"kitsune": {
"commandDescription": "Shows a random kitsune girl (lewd if the channel is NSFW).",
"hereIsYour_fox_girl": "Here's your kitsune!",
"hereIsYour_lewdk": "Here's your lewd kitsune!"
},
"pat": {
"commandDescription": "Pats someone.",
"commandUsage": "<user to pat>",
"noMention": "You have to mention someone!",
"success": "{{- _author}} pats {{- pat}}"
},