mirror of
https://github.com/arthur-pbty/xiao.git
synced 2026-06-19 05:51:42 +02:00
Make AI-Generator Names More Clear
This commit is contained in:
@@ -323,6 +323,9 @@ Total: 467
|
|||||||
|
|
||||||
### Random Image:
|
### 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.
|
* **awwnime:** Responds with cute random anime art.
|
||||||
* **bird:** Responds with a random image of a bird.
|
* **bird:** Responds with a random image of a bird.
|
||||||
* **bunny:** Responds with a random image of a bunny.
|
* **bunny:** Responds with a random image of a bunny.
|
||||||
@@ -331,7 +334,6 @@ Total: 467
|
|||||||
* **duck:** Responds with a random duck image.
|
* **duck:** Responds with a random duck image.
|
||||||
* **fidget:** Responds with a random image of Fidget.
|
* **fidget:** Responds with a random image of Fidget.
|
||||||
* **fox:** Responds with a random fox image.
|
* **fox:** Responds with a random fox image.
|
||||||
* **fursona:** Responds with a randomly generated fursona.
|
|
||||||
* **hentai:** Responds with a random hentai image. (NSFW)
|
* **hentai:** Responds with a random hentai image. (NSFW)
|
||||||
* **interesting:** Responds with a random interesting image.
|
* **interesting:** Responds with a random interesting image.
|
||||||
* **karen:** Responds with a random image of Karen.
|
* **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)
|
* **light-novel-cover:** Responds with a randomly generated Light Novel cover. (NSFW)
|
||||||
* **lorem-picsum:** Responds with a random image of a certain size.
|
* **lorem-picsum:** Responds with a random image of a certain size.
|
||||||
* **meme:** Responds with a random meme.
|
* **meme:** Responds with a random meme.
|
||||||
* **person:** Responds with a randomly generated person.
|
|
||||||
* **porn:** Responds with a random porn image. (NSFW)
|
* **porn:** Responds with a random porn image. (NSFW)
|
||||||
* **potato:** Responds with a random potato image.
|
* **potato:** Responds with a random potato image.
|
||||||
* **shiba:** Responds with a random image of a Shiba Inu.
|
* **shiba:** Responds with a random image of a Shiba Inu.
|
||||||
* **shrek:** Responds with a random image of Shrek, the sexiest man alive.
|
* **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.
|
* **xiao:** Responds with a random image of Xiao Pai.
|
||||||
|
|
||||||
### Seeded Randomizers:
|
### Seeded Randomizers:
|
||||||
@@ -1400,11 +1400,11 @@ here.
|
|||||||
- [The Onion](https://www.theonion.com/)
|
- [The Onion](https://www.theonion.com/)
|
||||||
* the-onion ([RSS Feed](https://www.theonion.com/rss))
|
* the-onion ([RSS Feed](https://www.theonion.com/rss))
|
||||||
- [This Fursona Does Not Exist](https://thisfursonadoesnotexist.com/)
|
- [This Fursona Does Not Exist](https://thisfursonadoesnotexist.com/)
|
||||||
* fursona (API)
|
* ai-fursona (API)
|
||||||
- [This Person Does Not Exist](https://thispersondoesnotexist.com/)
|
- [This Person Does Not Exist](https://thispersondoesnotexist.com/)
|
||||||
* person (API)
|
* ai-person (API)
|
||||||
- [This Waifu Does Not Exist](https://www.thiswaifudoesnotexist.net/)
|
- [This Waifu Does Not Exist](https://www.thiswaifudoesnotexist.net/)
|
||||||
* waifu (API)
|
* ai-waifu (API)
|
||||||
- [Tim's Printables](https://www.timvandevall.com/)
|
- [Tim's Printables](https://www.timvandevall.com/)
|
||||||
* wanted ([Image](https://www.pinterest.com/pin/365002744774849370/))
|
* wanted ([Image](https://www.pinterest.com/pin/365002744774849370/))
|
||||||
- [TrueAchievements](https://www.trueachievements.com/)
|
- [TrueAchievements](https://www.trueachievements.com/)
|
||||||
|
|||||||
@@ -1,12 +1,12 @@
|
|||||||
const Command = require('../../structures/Command');
|
const Command = require('../../structures/Command');
|
||||||
|
|
||||||
module.exports = class FursonaCommand extends Command {
|
module.exports = class AiFursonaCommand extends Command {
|
||||||
constructor(client) {
|
constructor(client) {
|
||||||
super(client, {
|
super(client, {
|
||||||
name: 'fursona',
|
name: 'ai-fursona',
|
||||||
aliases: ['this-fursona-does-not-exist'],
|
aliases: ['this-fursona-does-not-exist', 'fursona'],
|
||||||
group: 'random-img',
|
group: 'random-img',
|
||||||
memberName: 'fursona',
|
memberName: 'ai-fursona',
|
||||||
description: 'Responds with a randomly generated fursona.',
|
description: 'Responds with a randomly generated fursona.',
|
||||||
clientPermissions: ['ATTACH_FILES'],
|
clientPermissions: ['ATTACH_FILES'],
|
||||||
credit: [
|
credit: [
|
||||||
@@ -1,13 +1,13 @@
|
|||||||
const Command = require('../../structures/Command');
|
const Command = require('../../structures/Command');
|
||||||
const request = require('node-superfetch');
|
const request = require('node-superfetch');
|
||||||
|
|
||||||
module.exports = class PersonCommand extends Command {
|
module.exports = class AiPersonCommand extends Command {
|
||||||
constructor(client) {
|
constructor(client) {
|
||||||
super(client, {
|
super(client, {
|
||||||
name: 'person',
|
name: 'ai-person',
|
||||||
aliases: ['this-person-does-not-exist'],
|
aliases: ['this-person-does-not-exist', 'person'],
|
||||||
group: 'random-img',
|
group: 'random-img',
|
||||||
memberName: 'person',
|
memberName: 'ai-person',
|
||||||
description: 'Responds with a randomly generated person.',
|
description: 'Responds with a randomly generated person.',
|
||||||
clientPermissions: ['ATTACH_FILES'],
|
clientPermissions: ['ATTACH_FILES'],
|
||||||
credit: [
|
credit: [
|
||||||
@@ -1,12 +1,12 @@
|
|||||||
const Command = require('../../structures/Command');
|
const Command = require('../../structures/Command');
|
||||||
|
|
||||||
module.exports = class WaifuCommand extends Command {
|
module.exports = class AiWaifuCommand extends Command {
|
||||||
constructor(client) {
|
constructor(client) {
|
||||||
super(client, {
|
super(client, {
|
||||||
name: 'waifu',
|
name: 'ai-waifu',
|
||||||
aliases: ['this-waifu-does-not-exist'],
|
aliases: ['this-waifu-does-not-exist', 'waifu'],
|
||||||
group: 'random-img',
|
group: 'random-img',
|
||||||
memberName: 'waifu',
|
memberName: 'ai-waifu',
|
||||||
description: 'Responds with a randomly generated waifu.',
|
description: 'Responds with a randomly generated waifu.',
|
||||||
clientPermissions: ['ATTACH_FILES'],
|
clientPermissions: ['ATTACH_FILES'],
|
||||||
credit: [
|
credit: [
|
||||||
+1
-1
@@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name": "xiao",
|
"name": "xiao",
|
||||||
"version": "116.11.0",
|
"version": "116.11.1",
|
||||||
"description": "Your personal server companion.",
|
"description": "Your personal server companion.",
|
||||||
"main": "Xiao.js",
|
"main": "Xiao.js",
|
||||||
"scripts": {
|
"scripts": {
|
||||||
|
|||||||
Reference in New Issue
Block a user