MArcomage

Free multiplayer on-line fantasy card game

Please log in


20 20 U
Necroent
Necroent

Nature Undead

Enemy wall: -23
Attack: 15
If #Nature in hand > 4
Gems: +20
If #Undead in hand > 4
Recruits: +20

Id
576
Name
Necroent
Rarity
Uncommon
Keywords
Cost (B / G / R)
0 / 20 / 20
Modes
0
Level
10
Created
10. Sep, 2010
Modified
24. Dec, 2013
Played
1116 / 5753
Discarded
657 / 4413
Drawn
2658 / 15350

BB code

Effect

Enemy wall: -23
Attack: 15
If #Nature in hand > 4
Gems: +20
If #Undead in hand > 4
Recruits: +20

Code

    $t->hisData()->addWall(-23)->attack(15);
    if ($t->keywordCount($t->myData()->Hand, 'Nature') > 4) {
      $t->myData()->addGems(20);
    }
    if ($t->keywordCount($t->myData()->Hand, 'Undead') > 4) {
      $t->myData()->addRecruits(20);
    }