public void pbHPChanged(Combat.Pokemon pkmn, int oldhp, bool animate = false) { if (OnHPChanged != null) { OnHPChanged.Invoke(this, new OnHPChangedEventArgs { Index = pkmn.Index, Oldhp = oldhp, Animate = animate }); } }
public void pbLevelUp(Combat.Pokemon pokemon, Combat.Pokemon battler, int oldtotalhp, int oldattack, int olddefense, int oldspeed, int oldspatk, int oldspdef) { if (OnLevelUp != null) { OnLevelUp.Invoke(this, new OnLevelUpEventArgs { Pokemon = pokemon, Battler = battler, HP = oldtotalhp, Atk = oldattack, Def = olddefense, Spe = oldspatk, Spa = oldspatk, Spd = oldspdef }); } }
public void pbEXPBar(Combat.Pokemon pokemon, Combat.Pokemon battler, int startexp, int endexp, int tempexp1, int tempexp2) { //Always animate from 0 to 100... int zero = 0; int hundred = endexp - startexp; int start = tempexp1 - startexp; int finish = tempexp2 - startexp; throw new NotImplementedException(); }
public void pokeballThrow(Items ball, int shakes, bool critical, Combat.Pokemon targetBattler, IScene scene, Combat.Pokemon battler, int burst = -1, bool showplayer = false) { throw new NotImplementedException(); }
public void pbWithdraw(Combat.Battle battle, Combat.Pokemon pkmn) { throw new NotImplementedException(); }
public void pbTrainerSendOut(int battlerindex, Combat.Pokemon pkmn) { throw new NotImplementedException(); }
public int pbForgetMove(Combat.Pokemon pokemon, Moves moveToLearn) { throw new NotImplementedException(); }
public void pbCommonAnimation(string animname, Combat.Pokemon user, Combat.Pokemon target, int hitnum = 0) { throw new NotImplementedException(); }
public void pbDamageAnimation(Combat.Pokemon pkmn, float effectiveness) { throw new NotImplementedException(); }
public void pbChooseMove(Combat.Pokemon pokemon, string message) { throw new NotImplementedException(); }
public void pbChangeSpecies(Combat.Pokemon attacker, Pokemons species) { throw new NotImplementedException(); }
public void pbChangePokemon(Combat.Pokemon attacker, Forms pokemon) { throw new NotImplementedException(); }
public void pbAnimationCore(string animation, Combat.Pokemon user, Combat.Pokemon target, bool oppmove = false) { throw new NotImplementedException(); }
public void pbAnimation(Moves moveid, Combat.Pokemon user, Combat.Pokemon target, int hitnum = 0) { throw new NotImplementedException(); }