Add Sticky Web messages

This commit is contained in:
The Immortal
2013-12-05 12:59:06 +04:00
parent 874ccaec28
commit 6a4cd2f7da

View File

@@ -3846,6 +3846,9 @@ function Battle(frame, logFrame, noPreload) {
case 'powder':
actions += '' + poke.getName() + ' is covered in powder!';
break;
case 'stickyweb':
actions += '' + poke.getName() + ' was caught in a sticky web!';
break;
default:
actions += "" + poke.getName() + "'s " + effect.name + " started!";
}
@@ -4249,6 +4252,9 @@ function Battle(frame, logFrame, noPreload) {
case 'toxicspikes':
actions += "The poison spikes disappeared from around " + side.getLowerTeamName() + "'s feet!";
break;
case 'stickyweb':
actions += "The sticky web has disappeared from beneath " + side.getLowerTeamName() + "'s feet!";
break;
case 'tailwind':
actions += "" + side.getTeamName() + "'s tailwind petered out!";
break;