MArcomage

Free multiplayer on-line fantasy card game

Please log in


1 C
Pixie
Pixie

Stock: +N/2 - 1
N = #common cards in hand

Id
532
Name
Pixie
Rarity
Common
Keywords
Cost (B / G / R)
0 / 1 / 0
Modes
0
Level
10
Created
14. Mar, 2010
Modified
7. Apr, 2012
Played
1300 / 14154
Discarded
771 / 3895
Drawn
2537 / 21831

BB code

Effect

Stock: +N/2 - 1
N = #common cards in hand

Code

    $tmp = 0;
    for ($i = 1; $i <= $t->handSize(); $i++) {
      if ($t->getCard($t->myData()->Hand[$i])->getRarity() == 'Common') {
        $tmp++;
      }
    }
    $t->myData()->addStock(max(round($tmp / 2) - 1, 0));