コード例 #1
0
 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
         });
     }
 }
コード例 #2
0
 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
         });
     }
 }
コード例 #3
0
        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();
        }
コード例 #4
0
 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();
 }
コード例 #5
0
 public void pbWithdraw(Combat.Battle battle, Combat.Pokemon pkmn)
 {
     throw new NotImplementedException();
 }
コード例 #6
0
 public void pbTrainerSendOut(int battlerindex, Combat.Pokemon pkmn)
 {
     throw new NotImplementedException();
 }
コード例 #7
0
 public int pbForgetMove(Combat.Pokemon pokemon, Moves moveToLearn)
 {
     throw new NotImplementedException();
 }
コード例 #8
0
 public void pbCommonAnimation(string animname, Combat.Pokemon user, Combat.Pokemon target, int hitnum = 0)
 {
     throw new NotImplementedException();
 }
コード例 #9
0
 public void pbDamageAnimation(Combat.Pokemon pkmn, float effectiveness)
 {
     throw new NotImplementedException();
 }
コード例 #10
0
 public void pbChooseMove(Combat.Pokemon pokemon, string message)
 {
     throw new NotImplementedException();
 }
コード例 #11
0
 public void pbChangeSpecies(Combat.Pokemon attacker, Pokemons species)
 {
     throw new NotImplementedException();
 }
コード例 #12
0
 public void pbChangePokemon(Combat.Pokemon attacker, Forms pokemon)
 {
     throw new NotImplementedException();
 }
コード例 #13
0
 public void pbAnimationCore(string animation, Combat.Pokemon user, Combat.Pokemon target, bool oppmove = false)
 {
     throw new NotImplementedException();
 }
コード例 #14
0
 public void pbAnimation(Moves moveid, Combat.Pokemon user, Combat.Pokemon target, int hitnum = 0)
 {
     throw new NotImplementedException();
 }