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?
* **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.
+1
View File
@@ -20,6 +20,7 @@ client.registry
['info', 'Discord Information'],
['random', 'Random Response'],
['single', 'Single Response'],
['seeded', 'Seeded Randomizers'],
['events', 'Events'],
['search', 'Search'],
['analyze', 'Analyzers'],
@@ -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: [
@@ -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: [
@@ -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,
@@ -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: [
@@ -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: [
@@ -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: [
@@ -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: [
+1 -1
View File
@@ -1,6 +1,6 @@
{
"name": "xiao",
"version": "109.0.4",
"version": "109.0.5",
"description": "Your personal server companion.",
"main": "Xiao.js",
"scripts": {