- Added Stonehorn Dignitary.

This commit is contained in:
Sloth
2012-02-13 16:15:24 +00:00
parent 9745e70051
commit 23dff73483
3 changed files with 21 additions and 0 deletions

View File

@@ -574,8 +574,16 @@ public class AbilityFactoryPump {
CardList list;
if (this.abilityFactory.isCurse()) {
list = this.getCurseCreatures(sa, defense, attack);
if (tgt.canTgtPlayer()) {
tgt.addTarget(AllZone.getHumanPlayer());
return true;
}
} else {
list = this.getPumpCreatures(defense, attack, sa);
if (tgt.canTgtPlayer() && !tgt.canOnlyTgtOpponent()) {
tgt.addTarget(AllZone.getComputerPlayer());
return true;
}
}
list = list.getValidCards(tgt.getValidTgts(), sa.getActivatingPlayer(), sa.getSourceCard());