mirror of
https://github.com/correl/mage.git
synced 2024-12-26 11:09:27 +00:00
Added missing target to Acceptable Losses.
This commit is contained in:
parent
2446330960
commit
2dd26a9075
1 changed files with 2 additions and 0 deletions
|
@ -34,6 +34,7 @@ import mage.cards.CardImpl;
|
|||
import mage.constants.CardType;
|
||||
import mage.constants.Rarity;
|
||||
import mage.target.common.TargetCardInHand;
|
||||
import mage.target.common.TargetCreaturePermanent;
|
||||
|
||||
/**
|
||||
*
|
||||
|
@ -51,6 +52,7 @@ public class AcceptableLosses extends CardImpl<AcceptableLosses> {
|
|||
this.getSpellAbility().addCost(new DiscardTargetCost(new TargetCardInHand(), true));
|
||||
// Acceptable Losses deals 5 damage to target creature.
|
||||
this.getSpellAbility().addEffect(new DamageTargetEffect(5));
|
||||
this.getSpellAbility().addTarget(new TargetCreaturePermanent(true));
|
||||
}
|
||||
|
||||
public AcceptableLosses(final AcceptableLosses card) {
|
||||
|
|
Loading…
Reference in a new issue