MArcomage

Free multiplayer on-line fantasy card game

Please log in


15 15 R
Temptress
Temptress

Demonic

Attack: 30
If last card played was a rare
Enemy stock: -10
If last card played was Demonic
Attack: 20

Id
721
Name
Temptress
Rarity
Rare
Keywords
Cost (B / G / R)
15 / 0 / 15
Modes
0
Level
10
Created
1. Jan, 2014
Modified
1. Jan, 2014
Played
43 / 198
Discarded
16 / 65
Drawn
76 / 360

BB code

Effect

Attack: 30
If last card played was a rare
Enemy stock: -10
If last card played was Demonic
Attack: 20

Code

    $t->hisData()->attack(30);
    if ($t->myLastCard()->getRarity() == 'Rare') {
      $t->hisData()->addStock(-10);
    }
    if ($t->myLastCard()->hasKeyword('Demonic')) {
      $t->hisData()->attack(20);
    }