Necroent
Enemy wall: -23
Attack: 15
If #Nature in hand > 4
Gems: +20
If #Undead in hand > 4
Recruits: +20
Cost (B / G / R)
0 / 20 / 20
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);
}