MArcomage

Free multiplayer on-line fantasy card game

Please log in


10 R
Hydra
Hydra

Dragon

Replace adjacent cards with Hydra
Attack: 5N
N = #Hydra cards in game

Id
635
Name
Hydra
Rarity
Rare
Keywords
Cost (B / G / R)
0 / 0 / 10
Modes
0
Level
8
Created
24. Apr, 2011
Modified
17. Dec, 2016
Played
530 / 8347
Discarded
197 / 2713
Drawn
321 / 4071

BB code

Effect

Replace adjacent cards with Hydra
Attack: 5N
N = #Hydra cards in game

Code

    if ($t->cardPos() > 1) {
      $t->setCard('my', $t->cardPos() - 1, 635, ['reveal' => true]);
    }
    if ($t->cardPos() < $t->handSize()) {
      $t->setCard('my', $t->cardPos() + 1, 635, ['reveal' => true]);
    }
    $tmp = 0;
    for ($i = 1; $i <= $t->handSize(); $i++) {
      if ($t->myData()->Hand[$i] == 635) {
        $tmp++;
      }
      if ($t->hisData()->Hand[$i] == 635) {
        $tmp++;
      }
    }
    $t->hisData()->attack(5 * $tmp);