MArcomage

Free multiplayer on-line fantasy card game

Please log in


22 U
Troll bridge
Troll bridge

Horde

Wall: +15
Dungeon: +1
If #Troll in hand > 0
Attack: 15

Id
441
Name
Troll bridge
Rarity
Uncommon
Keywords
Cost (B / G / R)
22 / 0 / 0
Modes
0
Level
10
Created
22. Jul, 2009
Modified
24. Dec, 2011
Played
2458 / 23776
Discarded
346 / 4125
Drawn
3499 / 35156

BB code

Effect

Wall: +15
Dungeon: +1
If #Troll in hand > 0
Attack: 15

Code

    $t->myData()->addWall(15)->addDungeons(1);
    for ($i = 1; $i <= $t->handSize(); $i++) {
      if ($t->myData()->Hand[$i] == 106) {
        $t->hisData()->attack(15);
        break;
      }
    }