Skip to content

Commit bb3f7c1

Browse files
authoredDec 1, 2022
Add support for Revival Blessing (#2023)
1 parent c6c6eb4 commit bb3f7c1

File tree

2 files changed

+47
-6
lines changed

2 files changed

+47
-6
lines changed
 

‎js/client-battle.js

+35-6
Original file line numberDiff line numberDiff line change
@@ -777,14 +777,25 @@
777777
updateSwitchControls: function (type) {
778778
var pos = this.choice.choices.length;
779779

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)) {
781791
while (!this.request.forceSwitch[pos] && pos < 6) {
782792
pos = this.choice.choices.push('pass');
783793
}
784794
}
785795

786796
var switchables = this.request && this.request.side ? this.battle.myPokemon : [];
787797
var nearActive = this.battle.nearSide.active;
798+
var isReviving = !!switchables[pos].reviving;
788799

789800
var requestTitle = '';
790801
if (type === 'switch2' || type === 'switchposition') {
@@ -815,7 +826,9 @@
815826
'</div>'
816827
);
817828
} 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) {
819832
requestTitle += "Choose a Pokémon to send to battle!";
820833
} else {
821834
requestTitle += "Switch <strong>" + BattleLog.escapeHTML(switchables[pos].name) + "</strong> to:";
@@ -825,17 +838,25 @@
825838
for (var i = 0; i < switchables.length; i++) {
826839
var pokemon = switchables[i];
827840
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+
}
830847
} 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+
}
832853
}
833854
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> ';
834855
}
835856

836857
var controls = (
837858
'<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>' +
839860
'<div class="switchmenu">' + switchMenu + '</div>' +
840861
'</div>'
841862
);
@@ -1221,6 +1242,12 @@
12211242
if (!this.choice) return;
12221243
this.tooltips.hideTooltip();
12231244

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+
12241251
if (pos !== undefined) { // pos === undefined if called by chooseSwitchTarget()
12251252
this.choice.switchFlags[pos] = true;
12261253
if (this.choice.freedomDegrees >= 1) {
@@ -1292,6 +1319,8 @@
12921319
app.addPopupMessage("You are trapped and cannot select " + data[0] + "!");
12931320
} else if (data[1] === 'active') {
12941321
app.addPopupMessage("" + data[0] + " is already in battle!");
1322+
} else if (data[1] === 'notfainted') {
1323+
app.addPopupMessage("" + data[0] + " still has energy to battle!");
12951324
} else {
12961325
app.addPopupMessage("" + data[0] + " is already selected!");
12971326
}

‎src/battle.ts

+12
Original file line numberDiff line numberDiff line change
@@ -1719,6 +1719,18 @@ export class Battle {
17191719
case 'wish':
17201720
this.scene.runResidualAnim('wish' as ID, poke);
17211721
break;
1722+
case 'revivalblessing':
1723+
this.scene.runResidualAnim('wish' as ID, poke);
1724+
const {siden} = this.parsePokemonId(args[1]);
1725+
const side = this.sides[siden];
1726+
poke.fainted = false;
1727+
poke.status = '';
1728+
this.scene.updateSidebar(side);
1729+
// Revived while still on the field
1730+
if (!side.active[poke.slot]) {
1731+
poke.side.replace(poke);
1732+
}
1733+
break;
17221734
}
17231735
}
17241736
this.scene.runOtherAnim('heal' as ID, [poke]);

0 commit comments

Comments
 (0)