MArcomage

Free multiplayer on-line fantasy card game

Please log in


15 15 R
Harpy queen
Harpy queen

Aria Siege

Attack: 15
Enemy tower: -10
Replace all tower+ and wall+ cards in opponent's hand with Wind

Id
697
Name
Harpy queen
Rarity
Rare
Keywords
Cost (B / G / R)
0 / 15 / 15
Modes
0
Level
10
Created
1. Jan, 2013
Modified
26. Sep, 2015
Played
595 / 1718
Discarded
55 / 261
Drawn
810 / 2496

BB code

Effect

Attack: 15
Enemy tower: -10
Replace all tower+ and wall+ cards in opponent's hand with Wind

Code

    $t->hisData()->attack(15)->addTower(-10);
    $target_cards = array_merge($t->getList(['advanced'=>'Tower: +']), $t->getList(['advanced'=>'Wall: +']));
    for ($i = 1; $i <= $t->handSize(); $i++) {
      if (in_array($t->hisData()->Hand[$i], $target_cards)) {
        $t->setCard('his', $i, 247, ['reveal' => true]);
      }
    }