From 6ba24f0e0de96087c51084cb97b98d4f2d79c069 Mon Sep 17 00:00:00 2001 From: Dragon Fire Date: Tue, 3 Dec 2019 16:41:03 -0500 Subject: [PATCH] Split Seeded Randomizers from Analyze --- README.md | 17 ++++++++++------- Xiao.js | 1 + commands/{analyze => seeded}/butt.js | 2 +- commands/{analyze => seeded}/coolness.js | 2 +- commands/{analyze => seeded}/dick.js | 2 +- commands/{analyze => seeded}/guess-looks.js | 2 +- commands/{analyze => seeded}/iq.js | 2 +- commands/{analyze => seeded}/psycho-pass.js | 2 +- commands/{analyze => seeded}/ship.js | 2 +- package.json | 2 +- 10 files changed, 19 insertions(+), 15 deletions(-) rename commands/{analyze => seeded}/butt.js (98%) rename commands/{analyze => seeded}/coolness.js (98%) rename commands/{analyze => seeded}/dick.js (97%) rename commands/{analyze => seeded}/guess-looks.js (98%) rename commands/{analyze => seeded}/iq.js (97%) rename commands/{analyze => seeded}/psycho-pass.js (98%) rename commands/{analyze => seeded}/ship.js (98%) diff --git a/README.md b/README.md index 555541e4..71b13c3c 100644 --- a/README.md +++ b/README.md @@ -158,6 +158,16 @@ Xiao is a Discord bot coded in JavaScript with * **wynaut:** Why not? Wynaut? * **yoff:** Posts a picture that truly defines modern art. +### Seeded Randomizers: + +* **butt:** Determines a user's butt quality. +* **coolness:** Determines a user's coolness. +* **dick:** Determines your dick size. +* **guess-looks:** Guesses what a user looks like. +* **iq:** Determines a user's IQ. +* **psycho-pass:** Determines your Crime Coefficient. +* **ship:** Ships two users together. + ### Events: * **apod:** Responds with today's Astronomy Picture of the Day. @@ -236,20 +246,13 @@ Xiao is a Discord bot coded in JavaScript with ### Analyzers: * **age:** Responds with how old someone born in a certain year is. -* **butt:** Determines a user's butt quality. * **character-count:** Responds with the character count of text. * **chinese-zodiac:** Responds with the Chinese Zodiac Sign for the given year. -* **coolness:** Determines a user's coolness. -* **dick:** Determines your dick size. * **face:** Determines the race, gender, and age of a face. * **gender:** Determines the gender of a name. -* **guess-looks:** Guesses what a user looks like. -* **iq:** Determines a user's IQ. -* **psycho-pass:** Determines your Crime Coefficient. * **read-qr-code:** Reads a QR Code. * **scrabble-score:** Responds with the scrabble score of a word. * **severe-toxicity:** Determines the toxicity of text, but less sensitive to milder language. -* **ship:** Ships two users together. * **toxicity:** Determines the toxicity of text. * **what-anime:** Determines what anime a screenshot is from. * **zodiac-sign:** Responds with the Zodiac Sign for the given month/day. diff --git a/Xiao.js b/Xiao.js index 5cbd1e75..e7a97cc9 100644 --- a/Xiao.js +++ b/Xiao.js @@ -20,6 +20,7 @@ client.registry ['info', 'Discord Information'], ['random', 'Random Response'], ['single', 'Single Response'], + ['seeded', 'Seeded Randomizers'], ['events', 'Events'], ['search', 'Search'], ['analyze', 'Analyzers'], diff --git a/commands/analyze/butt.js b/commands/seeded/butt.js similarity index 98% rename from commands/analyze/butt.js rename to commands/seeded/butt.js index 9b31f209..f81e04d3 100644 --- a/commands/analyze/butt.js +++ b/commands/seeded/butt.js @@ -7,7 +7,7 @@ module.exports = class ButtCommand extends Command { super(client, { name: 'butt', aliases: ['butts', 'ass', 'booty'], - group: 'analyze', + group: 'seeded', memberName: 'butt', description: 'Determines a user\'s butt quality.', credit: [ diff --git a/commands/analyze/coolness.js b/commands/seeded/coolness.js similarity index 98% rename from commands/analyze/coolness.js rename to commands/seeded/coolness.js index 68d6813a..1e4b1a91 100644 --- a/commands/analyze/coolness.js +++ b/commands/seeded/coolness.js @@ -6,7 +6,7 @@ module.exports = class CoolnessCommand extends Command { constructor(client) { super(client, { name: 'coolness', - group: 'analyze', + group: 'seeded', memberName: 'coolness', description: 'Determines a user\'s coolness.', args: [ diff --git a/commands/analyze/dick.js b/commands/seeded/dick.js similarity index 97% rename from commands/analyze/dick.js rename to commands/seeded/dick.js index 5fb820f0..6a37b376 100644 --- a/commands/analyze/dick.js +++ b/commands/seeded/dick.js @@ -6,7 +6,7 @@ module.exports = class DickCommand extends Command { super(client, { name: 'dick', aliases: ['dick-size', 'penis', 'penis-size', 'pee-pee', 'pee-pee-size'], - group: 'analyze', + group: 'seeded', memberName: 'dick', description: 'Determines your dick size.', nsfw: true, diff --git a/commands/analyze/guess-looks.js b/commands/seeded/guess-looks.js similarity index 98% rename from commands/analyze/guess-looks.js rename to commands/seeded/guess-looks.js index 8102d7a2..e065d3df 100644 --- a/commands/analyze/guess-looks.js +++ b/commands/seeded/guess-looks.js @@ -9,7 +9,7 @@ module.exports = class GuessLooksCommand extends Command { super(client, { name: 'guess-looks', aliases: ['guess-my-looks'], - group: 'analyze', + group: 'seeded', memberName: 'guess-looks', description: 'Guesses what a user looks like.', args: [ diff --git a/commands/analyze/iq.js b/commands/seeded/iq.js similarity index 97% rename from commands/analyze/iq.js rename to commands/seeded/iq.js index ab298610..00a2d2bc 100644 --- a/commands/analyze/iq.js +++ b/commands/seeded/iq.js @@ -6,7 +6,7 @@ module.exports = class IQCommand extends Command { super(client, { name: 'iq', aliases: ['intelligence-quotient'], - group: 'analyze', + group: 'seeded', memberName: 'iq', description: 'Determines a user\'s IQ.', args: [ diff --git a/commands/analyze/psycho-pass.js b/commands/seeded/psycho-pass.js similarity index 98% rename from commands/analyze/psycho-pass.js rename to commands/seeded/psycho-pass.js index 59f15a5b..b89e143e 100644 --- a/commands/analyze/psycho-pass.js +++ b/commands/seeded/psycho-pass.js @@ -7,7 +7,7 @@ module.exports = class PsychoPassCommand extends Command { super(client, { name: 'psycho-pass', aliases: ['crime-coefficient'], - group: 'analyze', + group: 'seeded', memberName: 'psycho-pass', description: 'Determines your Crime Coefficient.', credit: [ diff --git a/commands/analyze/ship.js b/commands/seeded/ship.js similarity index 98% rename from commands/analyze/ship.js rename to commands/seeded/ship.js index d31c2504..86c25099 100644 --- a/commands/analyze/ship.js +++ b/commands/seeded/ship.js @@ -6,7 +6,7 @@ module.exports = class ShipCommand extends Command { constructor(client) { super(client, { name: 'ship', - group: 'analyze', + group: 'seeded', memberName: 'ship', description: 'Ships two users together.', args: [ diff --git a/package.json b/package.json index 5ffd844f..a25c68e5 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "xiao", - "version": "109.0.4", + "version": "109.0.5", "description": "Your personal server companion.", "main": "Xiao.js", "scripts": {