mirror of
https://github.com/arthur-pbty/xiao.git
synced 2026-06-15 15:57:47 +02:00
Updates
This commit is contained in:
@@ -9,7 +9,7 @@ module.exports = class CleverbotCommand extends Command {
|
||||
aliases: ['clevs'],
|
||||
group: 'other',
|
||||
memberName: 'cleverbot',
|
||||
description: 'Talk to Cleverbot!',
|
||||
description: 'Chat with Cleverbot.',
|
||||
ownerOnly: true,
|
||||
args: [
|
||||
{
|
||||
|
||||
@@ -6,7 +6,7 @@ module.exports = class CoolnessCommand extends Command {
|
||||
name: 'coolness',
|
||||
group: 'other',
|
||||
memberName: 'coolness',
|
||||
description: 'Determines your coolness.',
|
||||
description: 'Determines a user\'s coolness.',
|
||||
args: [
|
||||
{
|
||||
key: 'user',
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
const { Command } = require('discord.js-commando');
|
||||
const { list } = require('../../util/Util');
|
||||
const path = require('path');
|
||||
const sounds = ['airhorn', 'cat', 'dun-dun-dun', 'laugh track', 'pikachu', 'space'];
|
||||
const sounds = require('../../assets/json/soundboard');
|
||||
|
||||
module.exports = class SoundboardCommand extends Command {
|
||||
constructor(client) {
|
||||
|
||||
@@ -8,7 +8,7 @@ module.exports = class SpoopyLinkCommand extends Command {
|
||||
name: 'spoopy-link',
|
||||
group: 'other',
|
||||
memberName: 'spoopy-link',
|
||||
description: 'Checks if a link is spoopy or not.',
|
||||
description: 'Determines if a link is spoopy or not.',
|
||||
args: [
|
||||
{
|
||||
key: 'site',
|
||||
@@ -25,7 +25,7 @@ module.exports = class SpoopyLinkCommand extends Command {
|
||||
try {
|
||||
const { body } = await snekfetch.get(`https://spoopy.link/api/${site}`);
|
||||
return msg.say(stripIndents`
|
||||
${body.safe ? '✅ Safe!' : '❌ Not safe...'}
|
||||
${body.safe ? 'Safe!' : 'Not safe...'}
|
||||
${body.chain.map(url => `<${url.url}> ${url.safe ? '✅' : `❌ (${url.reasons.join(', ')})`}`).join('\n')}
|
||||
`);
|
||||
} catch (err) {
|
||||
|
||||
@@ -9,7 +9,7 @@ module.exports = class StrawpollCommand extends Command {
|
||||
aliases: ['poll'],
|
||||
group: 'other',
|
||||
memberName: 'strawpoll',
|
||||
description: 'Creates a Strawpoll from the options you provide.',
|
||||
description: 'Generates a Strawpoll with the options you provide.',
|
||||
args: [
|
||||
{
|
||||
key: 'title',
|
||||
|
||||
Reference in New Issue
Block a user