PokeBot/commands/Pokemon/claim.js

86 lines
2.7 KiB
JavaScript
Raw Permalink Normal View History

2018-02-25 21:58:31 -05:00
/** **************************************
2018-02-25 13:08:19 -05:00
*
* Claim: Plugin for PokeBot that powers the PokeWorld gym system.
* Copyright (C) 2018 TheEdge, jtsshieh, Alee
*
2018-03-31 21:45:52 -04:00
* Licensed under the Open Software License version 3.0
2018-02-25 13:08:19 -05:00
*
* *************************************/
2018-02-24 21:22:16 -05:00
exports.run = async (bot, msg) => {
const isWhitelist = await bot.plugins.whitelist.isWhitelist(msg.guild.id);
if (!isWhitelist) {
return msg.reply('This command is still in testing. Only whitelisted servers can use this command. Sorry!');
}
2018-04-05 20:18:43 -04:00
if (!msg.channel.name.startsWith('gym-')) {
return msg.reply('Go into one of the gym channels and try again.');
}
2018-04-05 20:18:43 -04:00
2018-04-05 20:31:07 -04:00
if (!bot.plugins.gyms.isOwned(msg.channel.topic)) {
2018-04-05 20:18:43 -04:00
const team = bot.plugins.gyms.getTeam(msg.member);
if (!team) {
return msg.reply('You have to join a team before you can claim a gym.');
}
2018-02-24 22:21:27 -05:00
msg.reply('Alright, you have claimed this gym as yours! Be ready to battle anyone who approaches you');
2018-04-05 20:18:43 -04:00
return msg.channel.setTopic(bot.plugins.gyms.getGymString(bot, msg.member));
2018-02-24 21:22:16 -05:00
}
2018-04-05 20:18:43 -04:00
const team = bot.plugins.gyms.getTeam(msg.member);
if (!team) {
return msg.reply('You have to join a team before you can claim a gym.');
}
2018-04-05 20:18:43 -04:00
2018-04-05 20:32:27 -04:00
const owner = bot.plugins.gyms.getOwnerId(msg.channel.topic);
if (msg.guild.members.find('id', owner).roles.find('name', team)) {
return msg.reply('Don\'t try battling your own team. They won\'t like you.');
}
2018-04-05 20:18:43 -04:00
if (bot.gyms.get(msg.channel.id) != null) {
return msg.reply('Nope, someone is already battling the gym.');
}
2018-04-05 20:18:43 -04:00
msg.channel.send(`<@${ owner }>, come here as ${ msg.member.displayName } wants to battle you.`);
2018-04-05 20:18:43 -04:00
const func = async mess => {
if (mess.channel != msg.channel) {
return;
}
2018-04-05 20:18:43 -04:00
if (!mess.embeds[0] &&
!mess.embeds[0].description &&
!mess.embeds[0].description.split('\n')[0] &&
!mess.embeds[0].description.split('\n')[0].split(' ')[0]
) {
return;
}
2018-04-05 20:18:43 -04:00
const field = mess.embeds[0].description.split('\n')[0].split(' ')[0];
const user = msg.guild.members.find(member => member.user.username === field);
if (!user) {
return;
}
2018-04-05 20:18:43 -04:00
if (user.id == owner) {
await msg.channel.send('The owner has not been defeated!');
} else if (user.id == msg.author.id) {
2018-04-05 20:18:43 -04:00
await msg.channel.send('The owner has been defeated! Transferring gym!');
2018-04-05 20:35:37 -04:00
await msg.channel.setTopic(bot.plugins.gyms.getGymString(bot, msg.member));
} else {
return;
2018-04-05 20:18:43 -04:00
}
bot.gyms.set(msg.channel.id, null);
bot.removeListener('message', func);
};
bot.gyms.set(msg.channel.id, func);
bot.on('message', func);
2018-02-24 21:22:16 -05:00
};
exports.conf = {
aliases: [],
guildOnly: true
2018-02-24 21:22:16 -05:00
};
exports.help = {
name: 'claim',
description: 'Claim a gym.'
2018-02-24 21:22:16 -05:00
};