Gunfight Command

This commit is contained in:
Daniel Odendahl Jr
2017-07-15 16:43:50 +00:00
parent 227df68eb1
commit 3b05706035
4 changed files with 62 additions and 3 deletions
+1 -1
View File
@@ -24,7 +24,7 @@ module.exports = class BattleCommand extends Command {
}
async run(msg, args) { // eslint-disable-line complexity
const opponent = args.opponent;
const { opponent } = args;
if (opponent.bot) return msg.say('Bots may not be fought.');
if (opponent.id === msg.author.id) return msg.say('You may not fight yourself.');
if (this.fighting.has(msg.guild.id)) return msg.say('Only one fight may be occurring per server.');
+59
View File
@@ -0,0 +1,59 @@
const Command = require('../../structures/Command');
module.exports = class GunfightCommand extends Command {
constructor(client) {
super(client, {
name: 'gunfight',
aliases: ['western-gunfight'],
group: 'games',
memberName: 'battle',
description: 'Engage in a western gunfight against another user.',
guildOnly: true,
args: [
{
key: 'opponent',
prompt: 'Who would you like to gunfight?',
type: 'user'
}
]
});
this.fighting = new Set();
}
async run(msg, args) {
const { opponent } = args;
if (opponent.bot) return msg.say('Bots may not be fought.');
if (opponent.id === msg.author.id) return msg.say('You may not fight yourself.');
if (this.fighting.has(msg.guild.id)) return msg.say('Only one fight may be occurring per server.');
this.fighting.add(msg.guild.id);
try {
await msg.say(`${opponent}, do you accept this challenge? **__Y__es** or **No**?`);
const verify = await msg.channel.awaitMessages((res) => res.author.id === opponent.id, {
max: 1,
time: 30000
});
if (!verify.size || !['yes', 'y'].includes(verify.first().content.toLowerCase())) {
this.fighting.delete(msg.guild.id);
return msg.say('Looks like they declined...');
}
await msg.say('Get Ready...');
const length = Math.floor(Math.random() * (30000 - 1000 + 1) + 1000);
this.client.setTimeout(async () => {
await msg.say('TYPE `FIRE` NOW!');
const filter = (res) => [opponent.id, msg.author.id].includes(res.author.id) && res.content.toLowerCase() === 'fire'; // eslint-disable-line max-len
const winner = await msg.channel.awaitMessages(filter, {
max: 1,
time: 30000
});
this.fighting.delete(msg.guild.id);
if (!winner.size) return msg.say('Oh... No one won.');
else return msg.say(`And the winner is ${winner.first().author.username}!`);
}, length);
return null;
} catch (err) {
this.fighting.delete(msg.guild.id);
return msg.say(`Oh no, an Error occurred: \`${err.message}\`. Try again later!`);
}
}
};
+1 -1
View File
@@ -31,7 +31,7 @@ module.exports = class TodayCommand extends Command {
if (day < 32 && day > 0) return true;
else return 'Please enter a valid day.';
}
},
}
]
});
}
+1 -1
View File
@@ -1,6 +1,6 @@
{
"name": "xiaobot",
"version": "27.2.1",
"version": "27.3.0",
"description": "Your personal server companion.",
"main": "Shard.js",
"scripts": {