java.lang.Object
com.pixelmonmod.pixelmon.api.pokemon.ability.AbstractAbility
com.pixelmonmod.pixelmon.api.pokemon.ability.abilities.FlowerGift
All Implemented Interfaces:
Ability, RarityTweak, ITranslatable

public class FlowerGift extends AbstractAbility
During sunlight, raises the attack and Special Defense of the Pokémon and its allies by 50%. Additionally, and starting from generation 5, this ability is responsible for transforming PixelmonSpecies.CHERRIM into sunshine form.
  • Constructor Details

    • FlowerGift

      public FlowerGift()
  • Method Details

    • modifyStatsTeammate

      public int[] modifyStatsTeammate(PixelmonWrapper pokemon, int[] stats)
      Description copied from interface: Ability
      Modifies an allied Pokémon's stats at the beginning of a battle turn.
      Parameters:
      pokemon - The Pokémon to be modified.
      stats - The Pokémon's stats.
      Returns:
      The modified stats.
    • modifyStatsCancellableTeammate

      public int[] modifyStatsCancellableTeammate(PixelmonWrapper pokemon, int[] stats)
      Description copied from interface: Ability
      Modifies an allied Pokémon's stats at the beginning of a battle turn. Affected by Abilities that negate other Abilities.
      Parameters:
      pokemon - The Pokémon to be modified.
      stats - The Pokémon's stats.
      Returns:
      The modified stats.
    • onWeatherChange

      public void onWeatherChange(PixelmonWrapper pw, Weather weather)
      Description copied from interface: Ability
      Triggers when the weather changes.
      Parameters:
      pw - The Pokémon to affect with the weather change.
      weather - The new weather.
    • applySwitchInEffect

      public void applySwitchInEffect(PixelmonWrapper newPokemon)
      Description copied from interface: Ability
      Triggers after the Pokémon switches in and when the Pokémon gains an Ability.
      Parameters:
      newPokemon - The Pokémon switching in.
    • applySwitchOutEffect

      public void applySwitchOutEffect(PixelmonWrapper pw)
      Description copied from interface: Ability
      Triggers when the Pokémon switches out.
      Parameters:
      pw - The Pokémon switching out.
    • onAbilityLost

      public void onAbilityLost(PixelmonWrapper pokemon)
      Description copied from interface: Ability
      Triggers just before the Pokémon loses an Ability in battle.
      Parameters:
      pokemon - The Pokémon with the Ability.