Esempio n. 1
0
 public static Card GetRandGraweyardCreature(PlayerType playerType)
 {
     return(CardManager.GetRandCreature(playerType, InGamePosition.Graveyard));
 }
Esempio n. 2
0
 public static List <Card> GetTableCreatures(PlayerType playerType)
 {
     return(CardManager.GetCreatures(playerType, InGamePosition.Table));
 }
Esempio n. 3
0
 public static Card GetRandTableCreature(PlayerType playerType)
 {
     return(CardManager.GetRandCreature(playerType, InGamePosition.Table));
 }