Urk the Conqueror
If last card played was a non-common Barbarian
Enemy wall: -20
Always:
Attack: 35
Cost (B / G / R)
0 / 0 / 30
BB code
Effect
If last card played was a non-common Barbarian
Enemy wall: -20
Always:
Attack: 35
Code
if ($t->myLastCard()->hasKeyword('Barbarian') && $t->myLastAction() == 'play' && $t->myLastCard()->getRarity() != 'Common') {
$t->hisData()->addWall(-20);
}
$t->hisData()->attack(35);