public class Uproar extends MultiTurnSpecialAttackBase
modifiers
Constructor and Description |
---|
Uproar() |
Modifier and Type | Method and Description |
---|---|
AttackResult |
applyEffectDuring(PixelmonWrapper user,
PixelmonWrapper target)
Triggers before the move hits the target.
|
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, cantMiss, decrementTurnCount, doesPersist, getTurnCount, ignoresType, isCharging, 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 void removeEffect(PixelmonWrapper user, PixelmonWrapper target)
MultiTurnSpecialAttackBase
removeEffect
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.