MArcomage

Free multiplayer on-line fantasy card game

Please log in


16 U
Battle rager
Battle rager

Barbarian Skirmisher Frenzy

If played card is a adjacent to a Frenzy card
Attack: 15
else
Attack: 21

Id
600
Name
Battle rager
Rarity
Uncommon
Cost (B / G / R)
0 / 0 / 16
Modes
0
Level
8
Created
3. Oct, 2010
Modified
17. Dec, 2016
Played
769 / 6852
Discarded
439 / 3130
Drawn
1802 / 14999

BB code

Effect

If played card is a adjacent to a Frenzy card
Attack: 15
else
Attack: 21

Code

    $t->hisData()->attack(
    (($t->cardPos() > 1 && $t->getCard($t->myData()->Hand[$t->cardPos() - 1])->hasKeyword('Frenzy')) || ($t->cardPos() < $t->handSize()
      && $t->getCard($t->myData()->Hand[$t->cardPos() + 1])->hasKeyword('Frenzy'))
    ) ? 15 : 21);