Gravity removes telekinesis from all pokemon on the field

This commit is contained in:
frutescens 2024-09-30 15:40:40 -07:00
parent 69f2433e8e
commit 06d06499d0

View File

@ -873,6 +873,7 @@ export class GravityTag extends ArenaTag {
arena.scene.getField(true).forEach((pokemon) => {
if (pokemon !== null) {
pokemon.removeTag(BattlerTagType.MAGNET_RISEN);
pokemon.removeTag(BattlerTagType.TELEKINESIS);
}
});
}