This commit is contained in:
Daniel Odendahl Jr
2017-11-09 00:02:59 +00:00
parent 819db49057
commit b6afded306
125 changed files with 743 additions and 289 deletions
+1 -1
View File
@@ -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: [
{
+1 -1
View File
@@ -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 -1
View File
@@ -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) {
+2 -2
View File
@@ -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) {
+1 -1
View File
@@ -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',