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

public class Disguise extends AbstractAbility
Created by Jay113355 on 3/18/2019. https://bulbapedia.bulbagarden.net/wiki/Disguise_(Ability)
  • Constructor Details

    • Disguise

      public Disguise()
  • Method Details

    • modifyDamageIncludeFixed

      public int modifyDamageIncludeFixed(int damage, PixelmonWrapper user, PixelmonWrapper target, Attack a)
      Triggers when the Pokémon takes direct damage, including fixed damage moves.
      Parameters:
      damage - The amount of damage dealt.
      user - The attack's user.
      target - The attack's target.
      a - The attack.
      Returns:
      The modified damage.
    • allowsIncomingAttack

      public boolean allowsIncomingAttack(PixelmonWrapper pokemon, PixelmonWrapper user, Attack a)
      Determines whether an incoming attack can hit the Pokémon
      Parameters:
      pokemon - The Pokémon with the Ability.
      user - The attack's user.
      a - The attack.
      Returns:
      Whether the attack can hit the Pokémon.
    • allowsOutgoingAttack

      public boolean allowsOutgoingAttack(PixelmonWrapper user, PixelmonWrapper target, Attack a)
      Determines whether an outgoing attack can hit the target.
      Parameters:
      user - - The user of the move and the Pokémon with the ability
      target - - The target of this Pokémon's attack.
      a - - The attack
      Returns:
      Whether the attack can hit the target or not.