public class Freeze extends StatusPersist
Makes the Pokémon unable to move.
  • Constructor Details

    • Freeze

      public Freeze()
      Initializes the status.
  • Method Details

    • applyEffect

      public void applyEffect(PixelmonWrapper user, PixelmonWrapper target)
      Description copied from class: EffectBase
      Causes various effects during the move.
      Overrides:
      applyEffect in class StatusBase
      Parameters:
      user - The move's user.
      target - The move's target.
    • freeze

      public static boolean freeze(PixelmonWrapper user, PixelmonWrapper target)
      Freezes the target if possible.
      Parameters:
      user - The Pokémon causing the freeze.
      target - The Pokémon to freeze.
    • canAttackThisTurn

      public boolean canAttackThisTurn(PixelmonWrapper user, Attack a)
      Description copied from class: StatusBase
      Determines whether the statused Pokémon can attack.
      Overrides:
      canAttackThisTurn in class StatusBase
      Parameters:
      user - The statused Pokémon.
      a - The attack to be used by the Pokémon.
      Returns:
      Whether the Pokémon can attack.
    • onDamageReceived

      public void onDamageReceived(PixelmonWrapper userWrapper, PixelmonWrapper pokemon, Attack a, int damage, DamageTypeEnum damageType)
      Description copied from class: StatusBase
      Triggers when the statused Pokémon takes damage.
      Overrides:
      onDamageReceived in class StatusBase
      Parameters:
      userWrapper - The attack's user.
      pokemon - The statused Pokémon.
      a - The attack.
      damage - The amount of damage dealt.
      damageType - The type of damage dealt.
    • restoreFromNBT

      public StatusPersist restoreFromNBT(net.minecraft.nbt.CompoundTag nbt)
      Description copied from class: StatusPersist
      Loads the status from NBT.
      Specified by:
      restoreFromNBT in class StatusPersist
      Parameters:
      nbt - The NBT tag to read from.
      Returns:
      A new instance of the status.
    • isImmune

      public boolean isImmune(PixelmonWrapper pokemon)
      Description copied from class: StatusBase
      Checks if the Pokémon is immune to the status.
      Overrides:
      isImmune in class StatusBase
      Parameters:
      pokemon - The Pokémon to check.
      Returns:
      Whether the Pokémon is immune to the status.
    • getCureMessage

      public String getCureMessage()
      Description copied from class: StatusBase
      Gets the lang key for the message that is displayed when the status is cured.
      Overrides:
      getCureMessage in class StatusBase
      Returns:
      The lang key for the message that is displayed when the status is cured.
    • getCureMessageItem

      public String getCureMessageItem()
      Description copied from class: StatusBase
      Gets the lang key for the message that is displayed when the status is cured with a held item.
      Overrides:
      getCureMessageItem in class StatusBase
      Returns:
      The lang key for the message that is displayed when the status is cured with a held item.
    • weightEffect

      public void weightEffect(PixelmonWrapper pw, MoveChoice userChoice, List<MoveChoice> userChoices, List<MoveChoice> bestUserChoices, List<MoveChoice> opponentChoices, List<MoveChoice> bestOpponentChoices)
      Description copied from class: EffectBase
      Determines a weight for the move that has this effect. Used for battle AI.
      Overrides:
      weightEffect in class EffectBase
      Parameters:
      pw - The Pokémon using the move.
      userChoice - The move with this effect.
      userChoices - All choices the Pokémon has for the turn.
      bestUserChoices - The best offensive choices the Pokémon has for the turn.
      opponentChoices - All choices the opponent has for the turn.
      bestOpponentChoices - The best choices the opponent has for the turn.