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

public class PowerOfAlchemy extends AbstractAbility
  • Constructor Details

    • PowerOfAlchemy

      public PowerOfAlchemy()
  • Method Details

    • tookDamageUser

      public void tookDamageUser(int damage, PixelmonWrapper user, PixelmonWrapper pokemon, Attack a)
      Description copied from interface: Ability
      Triggers after the Pokémon deals damage.
      Parameters:
      damage - The amount of damage dealt.
      user - The attack's user.
      pokemon - The attack's target.
      a - The attack.
    • onAllyFaint

      public void onAllyFaint(PixelmonWrapper pokemon, PixelmonWrapper fainted, PixelmonWrapper source)
      Description copied from interface: Ability
      Triggers right after an allied Pokémon faints.
      Parameters:
      pokemon - - The Pokémon with the ability. Not the one fainting.
      fainted - - The ally Pokémon that fainted.
      source - - The ultimate cause of the fainting. Self inflicted or global causes give the fainted as the source.
    • receiveAbility

      protected boolean receiveAbility(PixelmonWrapper pw, PixelmonWrapper fainted)
      Receives target pokemon's ability if possible.
      Parameters:
      pw - The pokemon with this ability.
      fainted - The pokemon who's ability is being received.
      Returns:
      Whether the ability was able to be replaced.
    • canBeRoleplayed

      public boolean canBeRoleplayed()
      Description copied from interface: Ability
      Returns whether the ability can be copied via Roleplay.
      Returns:
      Whether the ability can be copied.
    • canBeReceived

      public boolean canBeReceived()
      Description copied from interface: Ability
      Returns whether the ability can be copied from an ally via Receiver.
      Returns:
      Whether the ability can be Received from an ally.
    • canBeEntrained

      public boolean canBeEntrained()
      Description copied from interface: Ability
      Returns whether the ability can be transferred via Entrainment.
      Returns:
      Whether the ability can be set on opponent.
    • canBeTraced

      public boolean canBeTraced()
      Description copied from interface: Ability
      Returns whether the ability can be copied via Trace.
      Returns:
      Whether the ability can be Traced.