MArcomage

Free multiplayer on-line fantasy card game

Please log in


3 3 U
Trickster
Trickster

Brigand

Opponent's tokens are destroyed
Gain 1 random resource for each 10 destroyed tokens of the same kind

Id
555
Name
Trickster
Rarity
Uncommon
Keywords
Cost (B / G / R)
0 / 3 / 3
Modes
0
Level
10
Created
21. Jun, 2010
Modified
21. Jun, 2010
Played
326 / 4397
Discarded
62 / 2017
Drawn
536 / 8715

BB code

Effect

Opponent's tokens are destroyed
Gain 1 random resource for each 10 destroyed tokens of the same kind

Code

    $tmp = 0;
    foreach ($t->hisData()->TokenValues as $i => $value) {
      if ($value > 0) {
        $tmp+= floor($value / 10); $t->hisData()->TokenValues[$i] = 0;
      }
    }
    $t->myData()->addRandomResources($tmp);