MArcomage

Free multiplayer on-line fantasy card game

Please log in


1 R
Beast mistress
Beast mistress

Beast Frenzy

Recruits prod x2
Replace adjacent cards with Beast and Frenzy (can't summon self)

Id
69
Name
Beast mistress
Rarity
Rare
Keywords
Cost (B / G / R)
0 / 0 / 1
Modes
0
Level
0
Created
1. May, 2006
Modified
17. Dec, 2016
Played
331 / 4625
Discarded
76 / 926
Drawn
589 / 8273

BB code

Effect

Recruits prod x2
Replace adjacent cards with Beast and Frenzy (can't summon self)

Code

    $t->production()->multiplyRecruits(2);
    $list = array_diff(array_intersect($t->getList(['keyword'=>'Beast']), $t->getList(['keyword'=>'Frenzy'])), [$t->card()->id()]);
    if ($t->cardPos() > 1) {
      $t->setCard('my', $t->cardPos() - 1, $t->drawCard($list, $t->myData()->Hand, $t->cardPos() - 1, 'drawCardList'));
    }
    if ($t->cardPos() < $t->handSize()) {
      $t->setCard('my', $t->cardPos() + 1, $t->drawCard($list, $t->myData()->Hand, $t->cardPos() + 1, 'drawCardList'));
    }