mirror of
https://github.com/arthur-pbty/xiao.git
synced 2026-06-03 23:36:43 +02:00
Bring credit up-to-date
This commit is contained in:
@@ -38,6 +38,14 @@ module.exports = class HatCommand extends Command {
|
||||
{
|
||||
name: 'PinClipart',
|
||||
url: 'https://www.pinclipart.com/'
|
||||
},
|
||||
{
|
||||
name: 'RedBubble - Akbar Mna',
|
||||
url: 'https://www.redbubble.com/en/people/akbarmna/shop'
|
||||
},
|
||||
{
|
||||
name: 'KONOSUBA -God\'s blessing on this wonderful world!',
|
||||
url: 'http://konosuba.com/'
|
||||
}
|
||||
],
|
||||
args: [
|
||||
|
||||
@@ -15,6 +15,12 @@ module.exports = class CursedSpongeCommand extends Command {
|
||||
duration: 30
|
||||
},
|
||||
clientPermissions: ['ATTACH_FILES'],
|
||||
credit: [
|
||||
{
|
||||
name: 'Spongebob Squarepants',
|
||||
url: 'https://www.nick.com/shows/spongebob-squarepants'
|
||||
}
|
||||
],
|
||||
args: [
|
||||
{
|
||||
key: 'amount',
|
||||
|
||||
@@ -10,6 +10,12 @@ module.exports = class EightBallCommand extends Command {
|
||||
group: 'random',
|
||||
memberName: '8-ball',
|
||||
description: 'Asks your question to the Magic 8 Ball.',
|
||||
credit: [
|
||||
{
|
||||
name: 'Mattel',
|
||||
url: 'https://www.mattelgames.com/games/en-us/kids/magic-8-ball'
|
||||
}
|
||||
],
|
||||
args: [
|
||||
{
|
||||
key: 'question',
|
||||
|
||||
@@ -15,7 +15,7 @@ module.exports = class AxisCultCommand extends Command {
|
||||
url: 'https://www.reddit.com/r/axisorderbot/wiki/index'
|
||||
},
|
||||
{
|
||||
name: 'Konosuba: God\'s Blessing on this Wonderful World!',
|
||||
name: 'KONOSUBA -God\'s blessing on this wonderful world!',
|
||||
url: 'http://konosuba.com/'
|
||||
}
|
||||
]
|
||||
|
||||
@@ -10,6 +10,10 @@ module.exports = class ChuckNorrisCommand extends Command {
|
||||
memberName: 'chuck-norris',
|
||||
description: 'Responds with a random Chuck Norris joke.',
|
||||
credit: [
|
||||
{
|
||||
name: 'Chuck Norris',
|
||||
url: 'https://chucknorris.com/'
|
||||
},
|
||||
{
|
||||
name: 'The Internet Chuck Norris Database API',
|
||||
url: 'http://www.icndb.com/api/'
|
||||
|
||||
@@ -4,7 +4,7 @@ module.exports = class RandomUserCommand extends Command {
|
||||
constructor(client) {
|
||||
super(client, {
|
||||
name: 'random-user',
|
||||
aliases: ['member-roulette', 'user-roulette', 'random-member'],
|
||||
aliases: ['member-roulette', 'user-roulette', 'random-member', 'someone', '@someone'],
|
||||
group: 'random',
|
||||
memberName: 'random-user',
|
||||
description: 'Randomly chooses a member of the server.'
|
||||
|
||||
@@ -9,6 +9,12 @@ module.exports = class GoogleAutofillCommand extends Command {
|
||||
group: 'search',
|
||||
memberName: 'google-autofill',
|
||||
description: 'Responds with a list of the Google Autofill results for a particular query.',
|
||||
credit: [
|
||||
{
|
||||
name: 'Google',
|
||||
url: 'https://www.google.com/'
|
||||
}
|
||||
],
|
||||
args: [
|
||||
{
|
||||
key: 'query',
|
||||
|
||||
@@ -13,6 +13,16 @@ module.exports = class DarkLightCommand extends Command {
|
||||
description: 'Determines whether you use dark or light theme.',
|
||||
details: `**Types:** ${types.join(', ')}`,
|
||||
clientPermissions: ['ATTACH_FILES'],
|
||||
credit: [
|
||||
{
|
||||
name: 'u/LennyMcLennington',
|
||||
url: 'https://www.reddit.com/r/discordapp/comments/8t04ag/this_image_shows_different_text_depending_on/'
|
||||
},
|
||||
{
|
||||
name: 'u/AelinSA',
|
||||
url: 'https://www.reddit.com/r/discordapp/comments/9krnhr/preach_the_message_of_the_möth_with_this_magic/'
|
||||
}
|
||||
],
|
||||
args: [
|
||||
{
|
||||
key: 'type',
|
||||
|
||||
@@ -9,7 +9,17 @@ module.exports = class EatPantCommand extends Command {
|
||||
group: 'single',
|
||||
memberName: 'eat-pant',
|
||||
description: 'Eat pant.',
|
||||
clientPermissions: ['ATTACH_FILES']
|
||||
clientPermissions: ['ATTACH_FILES'],
|
||||
credit: [
|
||||
{
|
||||
name: 'u/_Ebb',
|
||||
url: 'https://www.reddit.com/r/Ooer/comments/52z589/eat_pant_maaaaaaaan/'
|
||||
},
|
||||
{
|
||||
name: 'The Simpsons',
|
||||
url: 'http://www.simpsonsworld.com/'
|
||||
}
|
||||
]
|
||||
});
|
||||
}
|
||||
|
||||
|
||||
@@ -7,7 +7,13 @@ module.exports = class KazumaKazumaCommand extends Command {
|
||||
group: 'single',
|
||||
memberName: 'kazuma-kazuma',
|
||||
description: 'Hai, Kazuma desu.',
|
||||
patterns: [/kazuma,? kazuma!?/i]
|
||||
patterns: [/kazuma,? kazuma!?/i],
|
||||
credit: [
|
||||
{
|
||||
name: 'KONOSUBA -God\'s blessing on this wonderful world!',
|
||||
url: 'http://konosuba.com/'
|
||||
}
|
||||
]
|
||||
});
|
||||
}
|
||||
|
||||
|
||||
@@ -8,7 +8,13 @@ module.exports = class SuicideHotlineCommand extends Command {
|
||||
group: 'single',
|
||||
memberName: 'suicide-hotline',
|
||||
description: 'Responds with the phone number for the Suicide Hotline.',
|
||||
patterns: [/kms|(kill myself)/i]
|
||||
patterns: [/kms|(kill myself)/i],
|
||||
credit: [
|
||||
{
|
||||
name: 'National Suicide Prevention Lifeline',
|
||||
url: 'https://suicidepreventionlifeline.org/'
|
||||
}
|
||||
]
|
||||
});
|
||||
}
|
||||
|
||||
|
||||
@@ -11,6 +11,16 @@ module.exports = class DoorsCommand extends Command {
|
||||
group: 'sp-games',
|
||||
memberName: 'doors',
|
||||
description: 'Open the right door, and you win the money! Make the wrong choice, and you get the fire!',
|
||||
credit: [
|
||||
{
|
||||
name: 'Mythbusters',
|
||||
url: 'https://go.discovery.com/tv-shows/mythbusters'
|
||||
},
|
||||
{
|
||||
name: 'Monty Hall problem',
|
||||
url: 'https://en.wikipedia.org/wiki/Monty_Hall_problem'
|
||||
}
|
||||
],
|
||||
args: [
|
||||
{
|
||||
key: 'door',
|
||||
|
||||
@@ -11,6 +11,10 @@ module.exports = class GoogleFeudCommand extends Command {
|
||||
memberName: 'google-feud',
|
||||
description: 'Attempt to determine the top suggestions for a Google search.',
|
||||
credit: [
|
||||
{
|
||||
name: 'Google',
|
||||
url: 'https://www.google.com/'
|
||||
},
|
||||
{
|
||||
name: 'Google Feud',
|
||||
url: 'http://www.googlefeud.com/'
|
||||
|
||||
+1
-1
@@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "xiao",
|
||||
"version": "109.4.0",
|
||||
"version": "109.4.1",
|
||||
"description": "Your personal server companion.",
|
||||
"main": "Xiao.js",
|
||||
"scripts": {
|
||||
|
||||
Reference in New Issue
Block a user