public class Bide extends MultiTurnSpecialAttackBase
modifiers
Constructor and Description |
---|
Bide() |
Modifier and Type | Method and Description |
---|---|
AttackResult |
applyEffectDuring(PixelmonWrapper user,
PixelmonWrapper target)
Triggers before the move hits the target.
|
boolean |
cantMiss(PixelmonWrapper user)
Determines whether a move cannot miss.
|
boolean |
ignoresType(PixelmonWrapper user)
Returns whether the move ignores type immunities.
|
boolean |
isCharging(PixelmonWrapper user,
PixelmonWrapper target)
Returns whether the multi-turn move is in a charging turn.
|
void |
removeEffect(PixelmonWrapper user,
PixelmonWrapper target)
Ends the multi-turn move.
|
boolean |
shouldNotLosePP(PixelmonWrapper user)
Returns whether the move should not have PP deducted during the turn.
|
void |
weightEffect(PixelmonWrapper pw,
MoveChoice userChoice,
java.util.List<MoveChoice> userChoices,
java.util.List<MoveChoice> bestUserChoices,
java.util.List<MoveChoice> opponentChoices,
java.util.List<MoveChoice> bestOpponentChoices)
Determines a weight for the move that has this effect.
|
applyEffect, applyMissEffect, decrementTurnCount, doesPersist, getTurnCount, setPersists, setTurnCount
applyEarlyEffect, applyEffectAfterAllTargets, applyEffectAfterStatus, applyEffectHitOrMiss, applyEffectStart, changeChance, checkChance, dealtDamage, getChance, getWeightWithChance, isChance, modifyDamage, modifyPriority, modifyTypeEffectiveness, modifyTypeEffectiveness
public AttackResult applyEffectDuring(PixelmonWrapper user, PixelmonWrapper target)
MultiTurnSpecialAttackBase
applyEffectDuring
in class MultiTurnSpecialAttackBase
user
- The move's user.target
- The move's target.public boolean cantMiss(PixelmonWrapper user)
EffectBase
cantMiss
in class MultiTurnSpecialAttackBase
user
- The move's user.public boolean ignoresType(PixelmonWrapper user)
MultiTurnSpecialAttackBase
ignoresType
in class MultiTurnSpecialAttackBase
user
- The move's userpublic void removeEffect(PixelmonWrapper user, PixelmonWrapper target)
MultiTurnSpecialAttackBase
removeEffect
in class MultiTurnSpecialAttackBase
user
- The move's usertarget
- The move's targetpublic boolean isCharging(PixelmonWrapper user, PixelmonWrapper target)
MultiTurnSpecialAttackBase
isCharging
in class MultiTurnSpecialAttackBase
user
- The move's usertarget
- The move's targetpublic boolean shouldNotLosePP(PixelmonWrapper user)
MultiTurnSpecialAttackBase
shouldNotLosePP
in class MultiTurnSpecialAttackBase
user
- The move's user.public void weightEffect(PixelmonWrapper pw, MoveChoice userChoice, java.util.List<MoveChoice> userChoices, java.util.List<MoveChoice> bestUserChoices, java.util.List<MoveChoice> opponentChoices, java.util.List<MoveChoice> bestOpponentChoices)
EffectBase
weightEffect
in class EffectBase
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.