Skip to content

Commit

Permalink
Add PU to teambuilder
Browse files Browse the repository at this point in the history
  • Loading branch information
TheImmortal committed Sep 2, 2014
1 parent 9e02658 commit 45be30a
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions js/client-teambuilder.js
Original file line number Diff line number Diff line change
Expand Up @@ -1239,14 +1239,14 @@
pokemon: function(pokemon) {
if (!pokemon) {
if (this.curTeam) {
if (this.curTeam.format === 'ou') return ['OU','BL','UU','BL2','RU','BL3','NU','NFE','LC Uber','LC'];
if (this.curTeam.format === 'cap') return ['CAP','OU','BL','UU','BL2','RU','BL3','NU','NFE','LC Uber','LC'];
if (this.curTeam.format === 'uu') return ['UU','BL2','RU','BL3','NU','NFE','LC Uber','LC'];
if (this.curTeam.format === 'ru') return ['RU','BL3','NU','NFE','LC Uber','LC'];
if (this.curTeam.format === 'nu') return ['NU','NFE','LC Uber','LC'];
if (this.curTeam.format === 'ou') return ['OU','BL','UU','BL2','RU','BL3','NU','PU','NFE','LC Uber','LC'];
if (this.curTeam.format === 'cap') return ['CAP','OU','BL','UU','BL2','RU','BL3','NU','PU','NFE','LC Uber','LC'];
if (this.curTeam.format === 'uu') return ['UU','BL2','RU','BL3','NU','PU','NFE','LC Uber','LC'];
if (this.curTeam.format === 'ru') return ['RU','BL3','NU','PU','NFE','LC Uber','LC'];
if (this.curTeam.format === 'nu') return ['NU','PU','NFE','LC Uber','LC'];
if (this.curTeam.format === 'lc') return ['LC'];
}
return ['OU','Uber','BL','UU','BL2','RU','BL3','NU','NFE','LC Uber','LC','Unreleased','CAP'];
return ['OU','Uber','BL','UU','BL2','RU','BL3','NU','PU','NFE','LC Uber','LC','Unreleased','CAP'];
}
var tierData = exports.BattleFormatsData[toId(pokemon.species)];
if (!tierData) return 'Illegal';
Expand Down

0 comments on commit 45be30a

Please sign in to comment.