Ejemplo n.º 1
0
 public IPermanentStat DefenseStat(IBattlePokemon defender)
 {
     return(defender.Stat(DefenseStatType));
 }
Ejemplo n.º 2
0
 public BurnStatus(IBattlePokemon pokemon, IEventBus eventBus) : base(pokemon, eventBus)
 {
     pokemon.NonVolatileStatus = this;
     pokemon.Stat(PermanentStatType.Attack).AddMultiplier(0.5M);
 }
Ejemplo n.º 3
0
 public IPermanentStat AttackStat(IBattlePokemon attacker)
 {
     return(attacker.Stat(AttackStatType));
 }