Split Seeded Randomizers from Analyze

This commit is contained in:
Dragon Fire
2019-12-03 16:41:03 -05:00
parent c95bbfaede
commit 6ba24f0e0d
10 changed files with 19 additions and 15 deletions
+10 -7
View File
@@ -158,6 +158,16 @@ Xiao is a Discord bot coded in JavaScript with
* **wynaut:** Why not? Wynaut? * **wynaut:** Why not? Wynaut?
* **yoff:** Posts a picture that truly defines modern art. * **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: ### Events:
* **apod:** Responds with today's Astronomy Picture of the Day. * **apod:** Responds with today's Astronomy Picture of the Day.
@@ -236,20 +246,13 @@ Xiao is a Discord bot coded in JavaScript with
### Analyzers: ### Analyzers:
* **age:** Responds with how old someone born in a certain year is. * **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. * **character-count:** Responds with the character count of text.
* **chinese-zodiac:** Responds with the Chinese Zodiac Sign for the given year. * **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. * **face:** Determines the race, gender, and age of a face.
* **gender:** Determines the gender of a name. * **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. * **read-qr-code:** Reads a QR Code.
* **scrabble-score:** Responds with the scrabble score of a word. * **scrabble-score:** Responds with the scrabble score of a word.
* **severe-toxicity:** Determines the toxicity of text, but less sensitive to milder language. * **severe-toxicity:** Determines the toxicity of text, but less sensitive to milder language.
* **ship:** Ships two users together.
* **toxicity:** Determines the toxicity of text. * **toxicity:** Determines the toxicity of text.
* **what-anime:** Determines what anime a screenshot is from. * **what-anime:** Determines what anime a screenshot is from.
* **zodiac-sign:** Responds with the Zodiac Sign for the given month/day. * **zodiac-sign:** Responds with the Zodiac Sign for the given month/day.
+1
View File
@@ -20,6 +20,7 @@ client.registry
['info', 'Discord Information'], ['info', 'Discord Information'],
['random', 'Random Response'], ['random', 'Random Response'],
['single', 'Single Response'], ['single', 'Single Response'],
['seeded', 'Seeded Randomizers'],
['events', 'Events'], ['events', 'Events'],
['search', 'Search'], ['search', 'Search'],
['analyze', 'Analyzers'], ['analyze', 'Analyzers'],
@@ -7,7 +7,7 @@ module.exports = class ButtCommand extends Command {
super(client, { super(client, {
name: 'butt', name: 'butt',
aliases: ['butts', 'ass', 'booty'], aliases: ['butts', 'ass', 'booty'],
group: 'analyze', group: 'seeded',
memberName: 'butt', memberName: 'butt',
description: 'Determines a user\'s butt quality.', description: 'Determines a user\'s butt quality.',
credit: [ credit: [
@@ -6,7 +6,7 @@ module.exports = class CoolnessCommand extends Command {
constructor(client) { constructor(client) {
super(client, { super(client, {
name: 'coolness', name: 'coolness',
group: 'analyze', group: 'seeded',
memberName: 'coolness', memberName: 'coolness',
description: 'Determines a user\'s coolness.', description: 'Determines a user\'s coolness.',
args: [ args: [
@@ -6,7 +6,7 @@ module.exports = class DickCommand extends Command {
super(client, { super(client, {
name: 'dick', name: 'dick',
aliases: ['dick-size', 'penis', 'penis-size', 'pee-pee', 'pee-pee-size'], aliases: ['dick-size', 'penis', 'penis-size', 'pee-pee', 'pee-pee-size'],
group: 'analyze', group: 'seeded',
memberName: 'dick', memberName: 'dick',
description: 'Determines your dick size.', description: 'Determines your dick size.',
nsfw: true, nsfw: true,
@@ -9,7 +9,7 @@ module.exports = class GuessLooksCommand extends Command {
super(client, { super(client, {
name: 'guess-looks', name: 'guess-looks',
aliases: ['guess-my-looks'], aliases: ['guess-my-looks'],
group: 'analyze', group: 'seeded',
memberName: 'guess-looks', memberName: 'guess-looks',
description: 'Guesses what a user looks like.', description: 'Guesses what a user looks like.',
args: [ args: [
@@ -6,7 +6,7 @@ module.exports = class IQCommand extends Command {
super(client, { super(client, {
name: 'iq', name: 'iq',
aliases: ['intelligence-quotient'], aliases: ['intelligence-quotient'],
group: 'analyze', group: 'seeded',
memberName: 'iq', memberName: 'iq',
description: 'Determines a user\'s IQ.', description: 'Determines a user\'s IQ.',
args: [ args: [
@@ -7,7 +7,7 @@ module.exports = class PsychoPassCommand extends Command {
super(client, { super(client, {
name: 'psycho-pass', name: 'psycho-pass',
aliases: ['crime-coefficient'], aliases: ['crime-coefficient'],
group: 'analyze', group: 'seeded',
memberName: 'psycho-pass', memberName: 'psycho-pass',
description: 'Determines your Crime Coefficient.', description: 'Determines your Crime Coefficient.',
credit: [ credit: [
@@ -6,7 +6,7 @@ module.exports = class ShipCommand extends Command {
constructor(client) { constructor(client) {
super(client, { super(client, {
name: 'ship', name: 'ship',
group: 'analyze', group: 'seeded',
memberName: 'ship', memberName: 'ship',
description: 'Ships two users together.', description: 'Ships two users together.',
args: [ args: [
+1 -1
View File
@@ -1,6 +1,6 @@
{ {
"name": "xiao", "name": "xiao",
"version": "109.0.4", "version": "109.0.5",
"description": "Your personal server companion.", "description": "Your personal server companion.",
"main": "Xiao.js", "main": "Xiao.js",
"scripts": { "scripts": {