From 06fe2a0f49f1a778c1c4f076ff5813a9dc542e79 Mon Sep 17 00:00:00 2001 From: Dragon Fire Date: Tue, 9 Jun 2020 13:59:27 -0400 Subject: [PATCH] Make AI-Generator Names More Clear --- README.md | 12 ++++++------ commands/random-img/{fursona.js => ai-fursona.js} | 8 ++++---- commands/random-img/{person.js => ai-person.js} | 8 ++++---- commands/random-img/{waifu.js => ai-waifu.js} | 8 ++++---- package.json | 2 +- 5 files changed, 19 insertions(+), 19 deletions(-) rename commands/random-img/{fursona.js => ai-fursona.js} (78%) rename commands/random-img/{person.js => ai-person.js} (79%) rename commands/random-img/{waifu.js => ai-waifu.js} (78%) diff --git a/README.md b/README.md index f6dd66e2..cc572cdf 100644 --- a/README.md +++ b/README.md @@ -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/) diff --git a/commands/random-img/fursona.js b/commands/random-img/ai-fursona.js similarity index 78% rename from commands/random-img/fursona.js rename to commands/random-img/ai-fursona.js index 008ec15b..193e3a16 100644 --- a/commands/random-img/fursona.js +++ b/commands/random-img/ai-fursona.js @@ -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: [ diff --git a/commands/random-img/person.js b/commands/random-img/ai-person.js similarity index 79% rename from commands/random-img/person.js rename to commands/random-img/ai-person.js index 17798969..10adf687 100644 --- a/commands/random-img/person.js +++ b/commands/random-img/ai-person.js @@ -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: [ diff --git a/commands/random-img/waifu.js b/commands/random-img/ai-waifu.js similarity index 78% rename from commands/random-img/waifu.js rename to commands/random-img/ai-waifu.js index fd760c2d..29cda805 100644 --- a/commands/random-img/waifu.js +++ b/commands/random-img/ai-waifu.js @@ -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: [ diff --git a/package.json b/package.json index 517f1a15..5f6fea9e 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "xiao", - "version": "116.11.0", + "version": "116.11.1", "description": "Your personal server companion.", "main": "Xiao.js", "scripts": {