MArcomage

Free multiplayer on-line fantasy card game

Please log in


1 U
Moon castle
Moon castle

Players gain 1 stock for each non-keyword card and lose 1 stock for each different keyword in their hand

Id
583
Name
Moon castle
Rarity
Uncommon
Keywords
Cost (B / G / R)
0 / 1 / 0
Modes
0
Level
10
Created
10. Sep, 2010
Modified
10. Sep, 2010
Played
4495 / 14793
Discarded
2703 / 4070
Drawn
3957 / 16046

BB code

Effect

Players gain 1 stock for each non-keyword card and lose 1 stock for each different keyword in their hand

Code

    $mine = $his = 0;
    for ($i = 1; $i <= $t->handSize(); $i++) {
      if (!$t->getCard($t->myData()->Hand[$i])->hasKeyword('any')) {
        $mine++;
      }
      if (!$t->getCard($t->hisData()->Hand[$i])->hasKeyword('any')) {
        $his++;
      }
    }
    $my_gain = $mine - $t->countDistinctKeywords($t->myData()->Hand);
    $his_gain = $his - $t->countDistinctKeywords($t->hisData()->Hand);
    $t->myData()->addStock($my_gain);
    $t->hisData()->addStock($his_gain);