aboutsummaryrefslogtreecommitdiff
path: root/commands/Pokemon/claim.js
diff options
context:
space:
mode:
authorUnknown <jtsshieh@outlook.com>2018-02-24 22:19:33 -0500
committerUnknown <jtsshieh@outlook.com>2018-02-24 22:19:33 -0500
commit1ef65bd505c67c78c0c2e7e9b246fde661cf1ea8 (patch)
treeb05ca9ba545d69f24517204ae80e341c20b4d5c5 /commands/Pokemon/claim.js
parentc95ab5278387f7e614b384a72b209633fdb75a56 (diff)
downloadPokeBot-1ef65bd505c67c78c0c2e7e9b246fde661cf1ea8.tar.gz
PokeBot-1ef65bd505c67c78c0c2e7e9b246fde661cf1ea8.tar.bz2
PokeBot-1ef65bd505c67c78c0c2e7e9b246fde661cf1ea8.zip
Gym
Diffstat (limited to 'commands/Pokemon/claim.js')
-rw-r--r--commands/Pokemon/claim.js14
1 files changed, 12 insertions, 2 deletions
diff --git a/commands/Pokemon/claim.js b/commands/Pokemon/claim.js
index 1f98a30..724b75c 100644
--- a/commands/Pokemon/claim.js
+++ b/commands/Pokemon/claim.js
@@ -2,11 +2,21 @@ exports.run = async (bot, msg) => {
if (!msg.channel.name.startsWith('gym-')) return msg.reply('Go into one of the gym channels and try again.');
if (msg.channel.topic == 'Current Owner: *none*') {
msg.reply('Alright, you have claimed this gym as yours! Be ready to battle anyone who approaches you');
- msg.channel.setTopic('Current Owner: ' + msg.author.id + '/' + msg.author.tag);
+ let team;
+ if (msg.member.roles.find('name', 'Aqua')) team = 'Aqua';
+ if (msg.member.roles.find('name', 'Rocket')) team = 'Rocket';
+ if (msg.member.roles.find('name', 'Magma')) team = 'Magma';
+ if (!team) return msg.reply('You have to join a team before you can claim a gym.');
+ msg.channel.setTopic('Current Owner: ' + msg.author.id + '/' + msg.author.tag + '/' + team);
}
else {
-
+ let team;
+ if (msg.member.roles.find('name', 'Aqua')) team = 'Aqua';
+ if (msg.member.roles.find('name', 'Rocket')) team = 'Rocket';
+ if (msg.member.roles.find('name', 'Magma')) team = 'Magma';
+ if (!team) return msg.reply('You have to join a team before you can claim a gym.');
const owner = msg.channel.topic.slice(15).substring(0, 18);
+ if (msg.guild.members.find('id', owner).roles.find('name', team)) return msg.reply('Were you looking to add a pokemon to the gym?');
msg.channel.send('<@' + owner + '>, come here as ' + msg.member.displayName + ' wants to battle you.');
}
};