Battle rager
If played card is a adjacent to a Frenzy card
Attack: 15
else
Attack: 21
Cost (B / G / R)
0 / 0 / 16
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);