RequestPlayerDiscardDownToCountInHand() private méthode

private RequestPlayerDiscardDownToCountInHand ( GameState gameState, int count ) : void
gameState GameState
count int
Résultat void
Exemple #1
0
 public override void DoSpecializedAttack(PlayerState currentPlayer, PlayerState otherPlayer, GameState gameState)
 {
     otherPlayer.DrawOneCardIntoHand();
     otherPlayer.RequestPlayerDiscardDownToCountInHand(gameState, 3);
 }
 public override void DoSpecializedAttack(PlayerState currentPlayer, PlayerState otherPlayer, GameState gameState)
 {
     otherPlayer.GainCardFromSupply(Cards.Curse, gameState);
     otherPlayer.RequestPlayerDiscardDownToCountInHand(gameState, 3);
 }