Beispiel #1
0
 public Selection MakeForcedSwitchSelection(Battle battle, Side actorSide)
 {
     throw new NotImplementedException();
 }
Beispiel #2
0
 public Move PickMoveToMimic(Side opponentSide)
 {
     throw new NotImplementedException();
 }
Beispiel #3
0
 private Selection MakeRandomFightSelection(Battle battle, Side actorSide)
 {
     return(Selection.MakeFight(actorSide.CurrentBattlePokemon,
                                battle.PlayerSide.CurrentBattlePokemon,
                                PickRandomMove(actorSide)));
 }