public class StatsEffectPost extends EffectBase
Modifier and Type | Field and Description |
---|---|
int |
amount
The amount to change the stat by.
|
BattleStatsType |
type
The stat affected by the effect.
|
modifiers
Constructor and Description |
---|
StatsEffectPost() |
StatsEffectPost(BattleStatsType type,
int value)
Initializes a stat effect.
|
Modifier and Type | Method and Description |
---|---|
static void |
addStatChangeAnimation(PixelmonWrapper user,
PixelmonWrapper target,
BattleStatsType stat,
int stages) |
void |
applyEffect(PixelmonWrapper user,
PixelmonWrapper target)
Causes various effects during the move.
|
void |
applyEffectAfterAllTargets(PixelmonWrapper user)
Executes the stat effect after all hits of the attack have been completed.
|
boolean |
cantMiss(PixelmonWrapper user)
Determines whether a move cannot miss.
|
BattleStatsType |
getStatsType()
Returns the type of stat modification.
|
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.
|
applyEarlyEffect, applyEffectAfterStatus, applyEffectHitOrMiss, applyEffectStart, applyMissEffect, changeChance, checkChance, dealtDamage, doesPersist, getChance, getWeightWithChance, isChance, modifyDamage, modifyPriority, modifyTypeEffectiveness, modifyTypeEffectiveness
public BattleStatsType type
public int amount
public StatsEffectPost()
public StatsEffectPost(BattleStatsType type, int value)
type
- The stat affected by the effect.value
- The amount to raise or lower the stat by.public void applyEffect(PixelmonWrapper user, PixelmonWrapper target)
EffectBase
applyEffect
in class EffectBase
user
- The move's user.target
- The move's target.public boolean cantMiss(PixelmonWrapper user)
EffectBase
cantMiss
in class EffectBase
user
- The move's user.public void applyEffectAfterAllTargets(PixelmonWrapper user)
applyEffectAfterAllTargets
in class EffectBase
user
- The attack's user.public static void addStatChangeAnimation(PixelmonWrapper user, PixelmonWrapper target, BattleStatsType stat, int stages)
public BattleStatsType getStatsType()
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.