MArcomage

Free multiplayer on-line fantasy card game

Please log in


17 U
Einzbern castle
Einzbern castle

Illusion

Tower: +12
Wall: +3N
N = #Illusion + #rare cards in hand

Id
699
Name
Einzbern castle
Rarity
Uncommon
Keywords
Cost (B / G / R)
17 / 0 / 0
Modes
0
Level
10
Created
1. Jan, 2013
Modified
1. Jan, 2013
Played
547 / 3572
Discarded
69 / 478
Drawn
576 / 4482

BB code

Effect

Tower: +12
Wall: +3N
N = #Illusion + #rare cards in hand

Code

    $illusions = $t->keywordCount($t->myData()->Hand, 'Illusion');
    $t->myData()->addTower(12);
    $rares = 0;
    for ($i = 1; $i <= $t->handSize(); $i++) {
      if ($i != $t->cardPos() && $t->getCard($t->myData()->Hand[$i])->getRarity() == 'Rare') {
        $rares++;
      }
    }
    $t->myData()->addWall(3 * ($illusions + $rares));