Myr the magelord
Mage. Legend. Enduring (8)
Attack: 8
Replace a random mage with Myr the magelord
Next card will be a common from your deck
Keywords
Mage. Legend. Enduring (8)
BB code
Effect
Attack: 8
Replace a random mage with Myr the magelord
Next card will be a common from your deck
Note
$this->Attack(8, $hisdata->Tower, $hisdata->Wall);
$storage = array();
for ($i = 1; $i <= 8; $i++)
if (($i != $cardpos) AND ($carddb->GetCard($mydata->Hand[$i])->GetClass() == 'Common') AND ($carddb->GetCard($mydata->Hand[$i])->HasKeyword("Mage")) $storage[] = $i;
if count($storage)>0
{shuffle($storage);
$j = $storage[0];
$mydata->Hand[$j] = ####;
$mydata->NewCards[$j] = 1;
}