MArcomage

Free multiplayer on-line fantasy card game

Please log in


28 R
Cerberus
Cerberus

Beast Demonic

Attack 30
Recruits prod x2
Replace matching card in opponent's hand and its adjacent cards with Pile of ashes

Id
726
Name
Cerberus
Rarity
Rare
Keywords
Cost (B / G / R)
0 / 0 / 28
Modes
0
Level
10
Created
1. Jan, 2014
Modified
17. Dec, 2016
Played
842 / 1533
Discarded
114 / 234
Drawn
1243 / 2316

BB code

Effect

Attack 30
Recruits prod x2
Replace matching card in opponent's hand and its adjacent cards with Pile of ashes

Code

    $t->hisData()->attack(30);
    $t->production()->multiplyRecruits(2);
    $t->setCard('his', $t->cardPos(), 381, ['reveal' => true]);
    if ($t->cardPos() > 1) {
      $t->setCard('his', $t->cardPos() - 1, 381, ['reveal' => true]);
    }
    if ($t->cardPos() < $t->handSize()) {
      $t->setCard('his', $t->cardPos() + 1, 381, ['reveal' => true]);
    }