MArcomage

Free multiplayer on-line fantasy card game

Please log in


1 C
Darkling
Darkling

Horde

Wall: +5 - N
Steals N random resources
N = #zero cost cards in opponent's hand

Id
708
Name
Darkling
Rarity
Common
Keywords
Cost (B / G / R)
0 / 0 / 1
Modes
0
Level
10
Created
27. Jul, 2013
Modified
29. Oct, 2016
Played
648 / 2939
Discarded
322 / 1945
Drawn
1132 / 5194

BB code

Effect

Wall: +5 - N
Steals N random resources
N = #zero cost cards in opponent's hand

Code

    $count = 0;
    for ($i = 1; $i <= $t->handSize(); $i++) {
      if ($t->getCard($t->hisData()->Hand[$i])->getResources() == 0) {
        $count++;
      }
    }
    $t->myData()->addWall(5 - $count);
    $t->stealRandomResources('my', $count);