MArcomage

Free multiplayer on-line fantasy card game

Please log in


11 U
Vulture
Vulture

Beast Aria

Attack: 10
If last card was discarded bonus attack based on discarded card rarity (C-8, U-16, R-28)

Id
443
Name
Vulture
Rarity
Uncommon
Keywords
Cost (B / G / R)
0 / 0 / 11
Modes
0
Level
10
Created
22. Jul, 2009
Modified
24. Jun, 2012
Played
963 / 7968
Discarded
524 / 4099
Drawn
2091 / 17947

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()]);
    }