java.lang.Object
com.pixelmonmod.pixelmon.api.pokemon.ability.AbstractAbility
com.pixelmonmod.pixelmon.api.pokemon.ability.abilities.Aura
All Implemented Interfaces:
Ability, RarityTweak, ITranslatable
Direct Known Subclasses:
DarkAura, FairyAura

public abstract class Aura extends AbstractAbility
Increases the power of a certain type of move by 33.3% for all Pokémon on the field.
  • Constructor Details

    • Aura

      public Aura(Element boostType, StatusType auraStatus)
      Initializes the Ability.
      Parameters:
      boostType - The move type boosted by the Ability.
  • Method Details

    • 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 oldPokemon)
      Description copied from interface: Ability
      Triggers when the Pokémon switches out.
      Parameters:
      oldPokemon - 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.