Vulture
Attack: 10
If last card was discarded bonus attack based on discarded card rarity (C-8, U-16, R-28)
Cost (B / G / R)
0 / 0 / 11
BB code
Effect
Attack: 10
If last card was discarded bonus attack based on discarded card rarity (C-8, U-16, R-28)
Code
$t->hisData()->attack(10);
if ($t->myLastAction() == 'discard') {
$damage = ['Common' => 8, 'Uncommon' => 16, 'Rare' => 28];
$t->hisData()->attack($damage[$t->myLastCard()->getRarity()]);
}