Skip to content

Commit 70def01

Browse files
authored
Tooltips: Handle implications of Symbiosis activation (#2320)
1 parent f15ceb0 commit 70def01

File tree

1 file changed

+8
-0
lines changed

1 file changed

+8
-0
lines changed

play.pokemonshowdown.com/src/battle.ts

+8
Original file line numberDiff line numberDiff line change
@@ -2897,6 +2897,14 @@ export class Battle {
28972897
poke.item = kwArgs.item;
28982898
poke.itemEffect = 'disturbed';
28992899
break;
2900+
case 'symbiosis':
2901+
poke.item = '';
2902+
poke.itemEffect = '';
2903+
poke.prevItem = kwArgs.item;
2904+
poke.prevItemEffect = 'given away';
2905+
target!.item = kwArgs.item;
2906+
target!.itemEffect = 'shared';
2907+
break;
29002908
case 'grudge':
29012909
poke.rememberMove(kwArgs.move, Infinity);
29022910
break;

0 commit comments

Comments
 (0)