diff --git a/README.md b/README.md index 82a20e49..9d504358 100644 --- a/README.md +++ b/README.md @@ -415,15 +415,18 @@ Total: 618 ### Seeded Randomizers: +* **adorable:** Creates an adorable avatar based on the text you provide. * **butt:** Determines a user's butt quality. * **coolness:** Determines a user's coolness. * **cuteness:** Determines a user's cuteness. +* **dicebear:** Creates a DiceBear avatar based on the text you provide. * **dick:** Determines your dick size. (NSFW) * **friendship:** Determines how good friends two users are. * **guess-looks:** Guesses what a user looks like. * **iq:** Determines a user's IQ. * **name-rater:** Determines a name's quality. * **psycho-pass:** Determines your Crime Coefficient. +* **robohash:** Creates a robot based on the text you provide. * **ship:** Ships two users together. * **smash-or-pass:** Determines if a user is worthy of a smash or a pass. * **thicc:** Determines how thicc you are. @@ -660,7 +663,6 @@ Total: 618 ### Image Manipulation: -* **adorable:** Creates an adorable avatar based on the text you provide. * **anime-eyes:** Draws anime eyes onto the faces in an image. * **approved:** Draws an "approved" stamp over an image or a user's avatar. * **blur:** Draws an image or a user's avatar but blurred. @@ -676,7 +678,6 @@ Total: 618 * **danny-devito:** Draws Danny Devito's face onto the faces in an image. * **desaturate:** Draws an image or a user's avatar but desaturated. * **dexter:** Draws an image or a user's avatar over the screen of Dexter from Pokémon. -* **dicebear:** Creates a DiceBear avatar based on the text you provide. * **distort:** Draws an image or a user's avatar but distorted. * **emboss:** Draws an image or a user's avatar but embossed. * **eyes:** Draws emoji eyes onto the faces in an image. @@ -707,7 +708,6 @@ Total: 618 * **rainbow:** Draws a rainbow over an image or a user's avatar. * **rejected:** Draws a "rejected" stamp over an image or a user's avatar. * **resize:** Draws an image or a user's avatar resized to the size you want. -* **robohash:** Creates a robot based on the text you provide. * **rotate:** Draws an image or a user's avatar but rotated a number of degrees. * **sepia:** Draws an image or a user's avatar in sepia. * **shake:** Draws an image or a user's avatar shaking. diff --git a/commands/edit-image/adorable.js b/commands/random-seed/adorable.js similarity index 97% rename from commands/edit-image/adorable.js rename to commands/random-seed/adorable.js index 4896098d..a7b7379d 100644 --- a/commands/edit-image/adorable.js +++ b/commands/random-seed/adorable.js @@ -6,7 +6,7 @@ module.exports = class AdorableCommand extends Command { super(client, { name: 'adorable', aliases: ['adorable-avatar'], - group: 'edit-image', + group: 'random-seed', memberName: 'adorable', description: 'Creates an adorable avatar based on the text you provide.', clientPermissions: ['ATTACH_FILES'], diff --git a/commands/edit-image/dicebear.js b/commands/random-seed/dicebear.js similarity index 98% rename from commands/edit-image/dicebear.js rename to commands/random-seed/dicebear.js index 5fd2082c..4f6c511e 100644 --- a/commands/edit-image/dicebear.js +++ b/commands/random-seed/dicebear.js @@ -9,7 +9,7 @@ module.exports = class DicebearCommand extends Command { super(client, { name: 'dicebear', aliases: ['dicebear-avatar'], - group: 'edit-image', + group: 'random-seed', memberName: 'dicebear', description: 'Creates a DiceBear avatar based on the text you provide.', clientPermissions: ['ATTACH_FILES'], diff --git a/commands/edit-image/robohash.js b/commands/random-seed/robohash.js similarity index 97% rename from commands/edit-image/robohash.js rename to commands/random-seed/robohash.js index 194567b6..424c4945 100644 --- a/commands/edit-image/robohash.js +++ b/commands/random-seed/robohash.js @@ -5,7 +5,7 @@ module.exports = class RobohashCommand extends Command { constructor(client) { super(client, { name: 'robohash', - group: 'edit-image', + group: 'random-seed', memberName: 'robohash', description: 'Creates a robot based on the text you provide.', clientPermissions: ['ATTACH_FILES'],