mirror of
https://github.com/correl/mage.git
synced 2025-01-13 19:11:33 +00:00
WickedReward add missing target
This commit is contained in:
parent
6d01e8e16f
commit
42a9959a5d
1 changed files with 2 additions and 0 deletions
|
@ -8,6 +8,7 @@ import mage.cards.CardSetInfo;
|
|||
import mage.constants.CardType;
|
||||
import mage.constants.Duration;
|
||||
import mage.target.common.TargetControlledCreaturePermanent;
|
||||
import mage.target.common.TargetCreaturePermanent;
|
||||
|
||||
public class WickedReward extends CardImpl {
|
||||
|
||||
|
@ -19,6 +20,7 @@ public class WickedReward extends CardImpl {
|
|||
|
||||
//Target creature gets +4/+2 until end of turn.
|
||||
this.getSpellAbility().addEffect(new BoostTargetEffect(4, 2, Duration.EndOfTurn));
|
||||
this.getSpellAbility().addTarget(new TargetCreaturePermanent());
|
||||
}
|
||||
|
||||
public WickedReward(WickedReward other){
|
||||
|
|
Loading…
Reference in a new issue