Frost unicorn
Attack: 35
If #Legend in hand > 1 and #Mage in hand > 0
Gems: +20
Magic: +1
Cost (B / G / R)
0 / 32 / 0
BB code
Effect
Attack: 35
If #Legend in hand > 1 and #Mage in hand > 0
Gems: +20
Magic: +1
Code
$t->hisData()->attack(35);
if ($t->keywordCount($t->myData()->Hand, 'Legend') > 1 && $t->keywordCount($t->myData()->Hand, 'Mage') > 0) {
$t->myData()->addMagic(1)->addGems(20);
}