MArcomage

Free multiplayer on-line fantasy card game

Please log in


0 R
Samurai princess
Samurai princess

Discard all rare cards from opponent's hand (opponent can't draw rare cards)

Id
641
Name
Samurai princess
Rarity
Rare
Keywords
Cost (B / G / R)
0 / 0 / 0
Modes
0
Level
9
Created
24. Sep, 2011
Modified
24. Sep, 2011
Played
440 / 2889
Discarded
44 / 815
Drawn
483 / 4113

BB code

Effect

Discard all rare cards from opponent's hand (opponent can't draw rare cards)

Code

    for ($i = 1; $i <= $t->handSize(); $i++) {
      if ($t->getCard($t->hisData()->Hand[$i])->getRarity() == 'Rare') {
        $t->setCard('his', $i, $t->drawCard($t->hisDeck(), $t->hisData()->Hand, $i, 'drawCardNoRare'));
      }
    }