Files
xiao/commands/games/gunfight.js
T
Daniel Odendahl Jr b6afded306 Updates
2017-11-09 00:02:59 +00:00

56 lines
1.8 KiB
JavaScript

const { Command } = require('discord.js-commando');
const { wait, randomRange, verify } = require('../../util/Util');
const words = ['fire', 'draw', 'shoot', 'bang', 'pull'];
module.exports = class GunfightCommand extends Command {
constructor(client) {
super(client, {
name: 'gunfight',
aliases: ['western-gunfight'],
group: 'games',
memberName: 'gunfight',
description: 'Engage in a western gunfight against another user. High noon.',
guildOnly: true,
args: [
{
key: 'opponent',
prompt: 'What user would you like to gunfight?',
type: 'user'
}
]
});
this.fighting = new Set();
}
async run(msg, { opponent }) {
if (opponent.bot) return msg.reply('Bots may not be fought.');
if (opponent.id === msg.author.id) return msg.reply('You may not fight yourself.');
if (this.fighting.has(msg.channel.id)) return msg.reply('Only one fight may be occurring per channel.');
this.fighting.add(msg.channel.id);
try {
await msg.say(`${opponent}, do you accept this challenge?`);
const verification = await verify(msg.channel, opponent);
if (!verification) {
this.fighting.delete(msg.channel.id);
return msg.say('Looks like they declined...');
}
await msg.say('Get Ready...');
await wait(randomRange(1000, 30000));
const word = words[Math.floor(Math.random() * words.length)];
await msg.say(`TYPE \`${word.toUpperCase()}\` NOW!`);
const filter = res => [opponent.id, msg.author.id].includes(res.author.id) && res.content.toLowerCase() === word;
const winner = await msg.channel.awaitMessages(filter, {
max: 1,
time: 30000
});
this.fighting.delete(msg.channel.id);
if (!winner.size) return msg.say('Oh... No one won.');
return msg.say(`The winner is ${winner.first().author}!`);
} catch (err) {
this.fighting.delete(msg.channel.id);
throw err;
}
}
};