Poseidon
Aqua, Legend
Attack: 40
If last card played was Poseidon's Wrath
Bonus 40 attack
Else
Next card will be Poseidon's Wrath
BB code
Effect
Attack: 40
If last card played was Poseidon's Wrath
Bonus 40 attack
Else
Next card will be Poseidon's Wrath
Note
Possible code for this::
$bonus = false; $temp_array = array(525); if (in_array($mydata->LastCard[$mylastcardindex], $temp_array) and ($mylast_action == 'play')) {
$bonus = true; $this->Attack(40 + (($bonus) ? 40 : 0), $hisdata->Tower, $hisdata->Wall);
}
else {
$nextcard = 525; }