Make AI-Generator Names More Clear

This commit is contained in:
Dragon Fire
2020-06-09 13:59:27 -04:00
parent 9a045f84d1
commit 06fe2a0f49
5 changed files with 19 additions and 19 deletions
+6 -6
View File
@@ -323,6 +323,9 @@ Total: 467
### Random Image:
* **ai-fursona:** Responds with a randomly generated fursona.
* **ai-person:** Responds with a randomly generated person.
* **ai-waifu:** Responds with a randomly generated waifu.
* **awwnime:** Responds with cute random anime art.
* **bird:** Responds with a random image of a bird.
* **bunny:** Responds with a random image of a bunny.
@@ -331,7 +334,6 @@ Total: 467
* **duck:** Responds with a random duck image.
* **fidget:** Responds with a random image of Fidget.
* **fox:** Responds with a random fox image.
* **fursona:** Responds with a randomly generated fursona.
* **hentai:** Responds with a random hentai image. (NSFW)
* **interesting:** Responds with a random interesting image.
* **karen:** Responds with a random image of Karen.
@@ -339,12 +341,10 @@ Total: 467
* **light-novel-cover:** Responds with a randomly generated Light Novel cover. (NSFW)
* **lorem-picsum:** Responds with a random image of a certain size.
* **meme:** Responds with a random meme.
* **person:** Responds with a randomly generated person.
* **porn:** Responds with a random porn image. (NSFW)
* **potato:** Responds with a random potato image.
* **shiba:** Responds with a random image of a Shiba Inu.
* **shrek:** Responds with a random image of Shrek, the sexiest man alive.
* **waifu:** Responds with a randomly generated waifu.
* **xiao:** Responds with a random image of Xiao Pai.
### Seeded Randomizers:
@@ -1400,11 +1400,11 @@ here.
- [The Onion](https://www.theonion.com/)
* the-onion ([RSS Feed](https://www.theonion.com/rss))
- [This Fursona Does Not Exist](https://thisfursonadoesnotexist.com/)
* fursona (API)
* ai-fursona (API)
- [This Person Does Not Exist](https://thispersondoesnotexist.com/)
* person (API)
* ai-person (API)
- [This Waifu Does Not Exist](https://www.thiswaifudoesnotexist.net/)
* waifu (API)
* ai-waifu (API)
- [Tim's Printables](https://www.timvandevall.com/)
* wanted ([Image](https://www.pinterest.com/pin/365002744774849370/))
- [TrueAchievements](https://www.trueachievements.com/)
@@ -1,12 +1,12 @@
const Command = require('../../structures/Command');
module.exports = class FursonaCommand extends Command {
module.exports = class AiFursonaCommand extends Command {
constructor(client) {
super(client, {
name: 'fursona',
aliases: ['this-fursona-does-not-exist'],
name: 'ai-fursona',
aliases: ['this-fursona-does-not-exist', 'fursona'],
group: 'random-img',
memberName: 'fursona',
memberName: 'ai-fursona',
description: 'Responds with a randomly generated fursona.',
clientPermissions: ['ATTACH_FILES'],
credit: [
@@ -1,13 +1,13 @@
const Command = require('../../structures/Command');
const request = require('node-superfetch');
module.exports = class PersonCommand extends Command {
module.exports = class AiPersonCommand extends Command {
constructor(client) {
super(client, {
name: 'person',
aliases: ['this-person-does-not-exist'],
name: 'ai-person',
aliases: ['this-person-does-not-exist', 'person'],
group: 'random-img',
memberName: 'person',
memberName: 'ai-person',
description: 'Responds with a randomly generated person.',
clientPermissions: ['ATTACH_FILES'],
credit: [
@@ -1,12 +1,12 @@
const Command = require('../../structures/Command');
module.exports = class WaifuCommand extends Command {
module.exports = class AiWaifuCommand extends Command {
constructor(client) {
super(client, {
name: 'waifu',
aliases: ['this-waifu-does-not-exist'],
name: 'ai-waifu',
aliases: ['this-waifu-does-not-exist', 'waifu'],
group: 'random-img',
memberName: 'waifu',
memberName: 'ai-waifu',
description: 'Responds with a randomly generated waifu.',
clientPermissions: ['ATTACH_FILES'],
credit: [
+1 -1
View File
@@ -1,6 +1,6 @@
{
"name": "xiao",
"version": "116.11.0",
"version": "116.11.1",
"description": "Your personal server companion.",
"main": "Xiao.js",
"scripts": {