diff --git a/src/ui/summary-ui-handler.ts b/src/ui/summary-ui-handler.ts index 1d203d2b806..8467ff2b9c8 100644 --- a/src/ui/summary-ui-handler.ts +++ b/src/ui/summary-ui-handler.ts @@ -380,7 +380,7 @@ export default class SummaryUiHandler extends UiHandler { this.friendshipText.setText(` ${this.pokemon?.friendship||"0"}/255`); - this.friendshipShadow.setCrop(0, 0, 16, 16 * (this.pokemon?.friendship||0) / 255); + this.friendshipShadow.setCrop(0, 0, 16, 16 - (16 * ((this.pokemon?.friendship||0) / 255))); const doubleShiny = isFusion && this.pokemon.shiny && this.pokemon.fusionShiny; const baseVariant = !doubleShiny ? this.pokemon.getVariant() : this.pokemon.variant;