|
777 | 777 | updateSwitchControls: function (type) {
|
778 | 778 | var pos = this.choice.choices.length;
|
779 | 779 |
|
780 |
| - if (type !== 'switchposition' && this.request.forceSwitch !== true && !this.choice.freedomDegrees) { |
| 780 | + // Needed so it client does not freak out when only 1 mon left wants to switch out |
| 781 | + var atLeast1Reviving = false; |
| 782 | + for (var i = 0; i < this.battle.pokemonControlled; i++) { |
| 783 | + var pokemon = this.battle.myPokemon[i]; |
| 784 | + if (pokemon.reviving) { |
| 785 | + atLeast1Reviving = true; |
| 786 | + break; |
| 787 | + } |
| 788 | + } |
| 789 | + |
| 790 | + if (type !== 'switchposition' && this.request.forceSwitch !== true && (!this.choice.freedomDegrees || atLeast1Reviving)) { |
781 | 791 | while (!this.request.forceSwitch[pos] && pos < 6) {
|
782 | 792 | pos = this.choice.choices.push('pass');
|
783 | 793 | }
|
784 | 794 | }
|
785 | 795 |
|
786 | 796 | var switchables = this.request && this.request.side ? this.battle.myPokemon : [];
|
787 | 797 | var nearActive = this.battle.nearSide.active;
|
| 798 | + var isReviving = !!switchables[pos].reviving; |
788 | 799 |
|
789 | 800 | var requestTitle = '';
|
790 | 801 | if (type === 'switch2' || type === 'switchposition') {
|
|
815 | 826 | '</div>'
|
816 | 827 | );
|
817 | 828 | } else {
|
818 |
| - if (this.choice.freedomDegrees >= 1) { |
| 829 | + if (isReviving) { |
| 830 | + requestTitle += "Choose a fainted Pokémon to revive!"; |
| 831 | + } else if (this.choice.freedomDegrees >= 1) { |
819 | 832 | requestTitle += "Choose a Pokémon to send to battle!";
|
820 | 833 | } else {
|
821 | 834 | requestTitle += "Switch <strong>" + BattleLog.escapeHTML(switchables[pos].name) + "</strong> to:";
|
|
825 | 838 | for (var i = 0; i < switchables.length; i++) {
|
826 | 839 | var pokemon = switchables[i];
|
827 | 840 | var tooltipArgs = 'switchpokemon|' + i;
|
828 |
| - if (pokemon.fainted || i < this.battle.pokemonControlled || this.choice.switchFlags[i]) { |
829 |
| - switchMenu += '<button class="disabled has-tooltip" name="chooseDisabled" value="' + BattleLog.escapeHTML(pokemon.name) + (pokemon.fainted ? ',fainted' : i < this.battle.pokemonControlled ? ',active' : '') + '" data-tooltip="' + BattleLog.escapeHTML(tooltipArgs) + '">'; |
| 841 | + if (isReviving) { |
| 842 | + if (!pokemon.fainted || this.choice.switchFlags[i]) { |
| 843 | + switchMenu += '<button class="disabled has-tooltip" name="chooseDisabled" value="' + BattleLog.escapeHTML(pokemon.name) + (pokemon.reviving ? ',active' : !pokemon.fainted ? ',notfainted' : '') + '" data-tooltip="' + BattleLog.escapeHTML(tooltipArgs) + '">'; |
| 844 | + } else { |
| 845 | + switchMenu += '<button name="chooseSwitch" value="' + i + '" class="has-tooltip" data-tooltip="' + BattleLog.escapeHTML(tooltipArgs) + '">'; |
| 846 | + } |
830 | 847 | } else {
|
831 |
| - switchMenu += '<button name="chooseSwitch" value="' + i + '" class="has-tooltip" data-tooltip="' + BattleLog.escapeHTML(tooltipArgs) + '">'; |
| 848 | + if (pokemon.fainted || i < this.battle.pokemonControlled || this.choice.switchFlags[i]) { |
| 849 | + switchMenu += '<button class="disabled has-tooltip" name="chooseDisabled" value="' + BattleLog.escapeHTML(pokemon.name) + (pokemon.fainted ? ',fainted' : i < this.battle.pokemonControlled ? ',active' : '') + '" data-tooltip="' + BattleLog.escapeHTML(tooltipArgs) + '">'; |
| 850 | + } else { |
| 851 | + switchMenu += '<button name="chooseSwitch" value="' + i + '" class="has-tooltip" data-tooltip="' + BattleLog.escapeHTML(tooltipArgs) + '">'; |
| 852 | + } |
832 | 853 | }
|
833 | 854 | switchMenu += '<span class="picon" style="' + Dex.getPokemonIcon(pokemon) + '"></span>' + BattleLog.escapeHTML(pokemon.name) + (!pokemon.fainted ? '<span class="' + pokemon.getHPColorClass() + '"><span style="width:' + (Math.round(pokemon.hp * 92 / pokemon.maxhp) || 1) + 'px"></span></span>' + (pokemon.status ? '<span class="status ' + pokemon.status + '"></span>' : '') : '') + '</button> ';
|
834 | 855 | }
|
835 | 856 |
|
836 | 857 | var controls = (
|
837 | 858 | '<div class="switchcontrols">' +
|
838 |
| - '<div class="switchselect"><button name="selectSwitch">Switch</button></div>' + |
| 859 | + '<div class="switchselect"><button name="selectSwitch">' + (isReviving ? 'Revive' : 'Switch') + '</button></div>' + |
839 | 860 | '<div class="switchmenu">' + switchMenu + '</div>' +
|
840 | 861 | '</div>'
|
841 | 862 | );
|
|
1221 | 1242 | if (!this.choice) return;
|
1222 | 1243 | this.tooltips.hideTooltip();
|
1223 | 1244 |
|
| 1245 | + if (this.battle.myPokemon[this.choice.choices.length].reviving) { |
| 1246 | + this.choice.choices.push('switch ' + (parseInt(pos, 10) + 1)); |
| 1247 | + this.endChoice(); |
| 1248 | + return; |
| 1249 | + } |
| 1250 | + |
1224 | 1251 | if (pos !== undefined) { // pos === undefined if called by chooseSwitchTarget()
|
1225 | 1252 | this.choice.switchFlags[pos] = true;
|
1226 | 1253 | if (this.choice.freedomDegrees >= 1) {
|
|
1292 | 1319 | app.addPopupMessage("You are trapped and cannot select " + data[0] + "!");
|
1293 | 1320 | } else if (data[1] === 'active') {
|
1294 | 1321 | app.addPopupMessage("" + data[0] + " is already in battle!");
|
| 1322 | + } else if (data[1] === 'notfainted') { |
| 1323 | + app.addPopupMessage("" + data[0] + " still has energy to battle!"); |
1295 | 1324 | } else {
|
1296 | 1325 | app.addPopupMessage("" + data[0] + " is already selected!");
|
1297 | 1326 | }
|
|
0 commit comments