diff options
| author | Unknown <jtsshieh@outlook.com> | 2018-02-24 18:38:43 -0500 |
|---|---|---|
| committer | Unknown <jtsshieh@outlook.com> | 2018-02-24 18:38:43 -0500 |
| commit | 3e223e6e0fef36e12ce4f02127e28d8b2cd5f64c (patch) | |
| tree | 4d331d16b23f9017f44d38be8e0e6021bf03d323 /commands/Teams | |
| parent | a4d1af8d48a303b66172638464fb2223859ef7e0 (diff) | |
| download | PokeBot-3e223e6e0fef36e12ce4f02127e28d8b2cd5f64c.tar.gz PokeBot-3e223e6e0fef36e12ce4f02127e28d8b2cd5f64c.tar.bz2 PokeBot-3e223e6e0fef36e12ce4f02127e28d8b2cd5f64c.zip | |
Cange
Diffstat (limited to 'commands/Teams')
| -rw-r--r-- | commands/Teams/join.js | 46 | ||||
| -rw-r--r-- | commands/Teams/leave.js | 18 |
2 files changed, 32 insertions, 32 deletions
diff --git a/commands/Teams/join.js b/commands/Teams/join.js index c9ba26e..39bdf90 100644 --- a/commands/Teams/join.js +++ b/commands/Teams/join.js @@ -4,23 +4,23 @@ exports.run = async (bot, msg, args) => { const team = findTeam(msg, args[0]); switch(args[0]) { - case 'mystic': { - msg.member.addRole(msg.guild.roles.find('name', 'Mystic')); - msg.reply(`Alright, ${team ? 'you have left team ' + team + ' and ' : 'you have '}joined team Mystic.`); + case 'aqua': { + msg.member.addRole(msg.guild.roles.find('name', 'Aqua')); + msg.reply(`Alright, ${team ? 'you have left team ' + team + ' and ' : 'you have '}joined team Aqua.`); break; } - case 'valor' : { - msg.member.addRole(msg.guild.roles.find('name', 'Valor')); - msg.reply(`Alright, ${team ? 'you have left team ' + team + ' and ' : 'you have '}joined team Valor.`); + case 'rocket' : { + msg.member.addRole(msg.guild.roles.find('name', 'Rocket')); + msg.reply(`Alright, ${team ? 'you have left team ' + team + ' and ' : 'you have '}joined team Rocket.`); break; } - case 'instinct' : { - msg.member.addRole(msg.guild.roles.find('name', 'Instinct')); - msg.reply(`Alright, ${team ? 'you have left team ' + team + ' and ' : 'you have '}joined team Instinct.`); + case 'magma' : { + msg.member.addRole(msg.guild.roles.find('name', 'Magma')); + msg.reply(`Alright, ${team ? 'you have left team ' + team + ' and ' : 'you have '}joined team Magma.`); break; } default : { - msg.reply('You have to pick, mystic, valor, or instinct.'); + msg.reply('You have to pick, aqua, rocket, or magma.'); break; } } @@ -30,20 +30,20 @@ function findTeam(msg, team) { let oldTeam; - if (msg.member.roles.find('name', 'Mystic')) { - if (team == 'mystic') return; - msg.member.removeRole(msg.guild.roles.find('name', 'Mystic')); - oldTeam = 'Mystic'; + if (msg.member.roles.find('name', 'Aqua')) { + if (team == 'aqua') return; + msg.member.removeRole(msg.guild.roles.find('name', 'Aqua')); + oldTeam = 'Aqua'; } - else if (msg.member.roles.find('name', 'Valor')) { - if (team == 'valor') return; - msg.member.removeRole(msg.guild.roles.find('name', 'Valor')); - oldTeam = 'Valor'; + else if (msg.member.roles.find('name', 'Rocket')) { + if (team == 'rocket') return; + msg.member.removeRole(msg.guild.roles.find('name', 'Rocket')); + oldTeam = 'Rocket'; } - else if (msg.member.roles.find('name', 'Instinct')) { - if (team == 'instinct') return; - msg.member.removeRole(msg.guild.roles.find('name', 'Instinct')); - oldTeam = 'Instinct'; + else if (msg.member.roles.find('name', 'Magma')) { + if (team == 'magma') return; + msg.member.removeRole(msg.guild.roles.find('name', 'Magma')); + oldTeam = 'Magma'; } return oldTeam; } @@ -56,5 +56,5 @@ exports.conf = { exports.help = { name: 'join', description: 'Join one of the teams!', - usage: '<mystic/valor/instinct>', + usage: '<aqua/rocket/magma>', }; diff --git a/commands/Teams/leave.js b/commands/Teams/leave.js index c22a1f2..fb02e16 100644 --- a/commands/Teams/leave.js +++ b/commands/Teams/leave.js @@ -1,15 +1,15 @@ exports.run = async (bot, msg) => { - if (msg.member.roles.find('name', 'Mystic')) { - msg.member.removeRole(msg.guild.roles.find('name', 'Mystic')); - msg.reply('Alright, you are not longer in team Mystic.'); + if (msg.member.roles.find('name', 'Aqua')) { + msg.member.removeRole(msg.guild.roles.find('name', 'Aqua')); + msg.reply('Alright, you are not longer in team Aqua.'); } - else if (msg.member.roles.find('name', 'Valor')) { - msg.member.removeRole(msg.guild.roles.find('name', 'Valor')); - msg.reply('Alright, you are not longer in team Valor.'); + else if (msg.member.roles.find('name', 'Rocket')) { + msg.member.removeRole(msg.guild.roles.find('name', 'Rocket')); + msg.reply('Alright, you are not longer in team Rocket.'); } - else if (msg.member.roles.find('name', 'Instinct')) { - msg.member.removeRole(msg.guild.roles.find('name', 'Instinct')); - msg.reply('Alright, you are not longer in team Instinct.'); + else if (msg.member.roles.find('name', 'Magma')) { + msg.member.removeRole(msg.guild.roles.find('name', 'Magma')); + msg.reply('Alright, you are not longer in team Magma.'); } else { msg.reply('You are not in a team.'); |
