MArcomage

Free multiplayer on-line fantasy card game

Please log in


4 C
Necromancy
Necromancy

Summons Undead of a rarity based on #Undead in hand (C - 0 to 3, U - 4 to 6, R - 7)

Id
145
Name
Necromancy
Rarity
Common
Keywords
Cost (B / G / R)
0 / 4 / 0
Modes
0
Level
10
Created
1. May, 2006
Modified
8. Sep, 2012
Played
2580 / 19944
Discarded
609 / 3216
Drawn
3771 / 27493

BB code

Effect

Summons Undead of a rarity based on #Undead in hand (C - 0 to 3, U - 4 to 6, R - 7)

Code

    $tmp = $t->keywordCount($t->myData()->Hand, 'Undead');
    $rarity = ($tmp == 7) ? 'Rare' : (($tmp < 7 && $tmp > 3) ? 'Uncommon' : 'Common');
    $t->nextCard($t->drawCard($t->getList(['rarity'=>$rarity, 'keyword'=>'Undead']), $t->myData()->Hand, $t->cardPos(), 'drawCardList'));