serum powder code

serum powder second ability...
Any time you could mulligan and Serum Powder is in your hand, you may
exile all the cards from your hand, then draw that many cards.
This commit is contained in:
Anthony Calosa
2015-08-20 23:11:44 +08:00
parent 5a2637856f
commit 59c0cf467f
9 changed files with 80 additions and 6 deletions

View File

@@ -1839,6 +1839,13 @@ void GameObserver::Mulligan(Player* player)
player->takeMulligan();
}
void GameObserver::serumMulligan(Player* player)
{
if(!player) player = currentPlayer;
logAction(player, "mulligan serum powder");
player->serumMulligan();
}
Player* GameObserver::createPlayer(const string& playerMode
#ifdef TESTSUITE
, TestSuiteGame* testgame