MArcomage

Free multiplayer on-line fantasy card game

Please log in


5 6 U
Harpy warrior
Harpy warrior

Aria Siege

Attack: 2N
N = #Aria + #non-common cards in hand

Id
695
Name
Harpy warrior
Rarity
Uncommon
Keywords
Cost (B / G / R)
0 / 5 / 6
Modes
0
Level
10
Created
1. Jan, 2013
Modified
1. Jan, 2013
Played
351 / 2543
Discarded
142 / 647
Drawn
609 / 3671

BB code

Effect

Attack: 2N
N = #Aria + #non-common cards in hand

Code

    $aria = $t->keywordCount($t->myData()->Hand, 'Aria');
    $noncommon =  0;
    for ($i = 1; $i <= $t->handSize(); $i++) {
      if ($t->getCard($t->myData()->Hand[$i])->getRarity() != 'Common') {
        $noncommon++;
      }
    }
    $t->hisData()->attack(2 * ($aria + $noncommon));