mirror of
https://github.com/correl/mage.git
synced 2024-12-26 03:00:11 +00:00
fixed Unexpected Fangs not targeting
This commit is contained in:
parent
7083c61928
commit
20d9562a93
1 changed files with 2 additions and 0 deletions
|
@ -5,6 +5,7 @@ import mage.cards.CardImpl;
|
||||||
import mage.cards.CardSetInfo;
|
import mage.cards.CardSetInfo;
|
||||||
import mage.constants.CardType;
|
import mage.constants.CardType;
|
||||||
import mage.counters.CounterType;
|
import mage.counters.CounterType;
|
||||||
|
import mage.target.common.TargetCreaturePermanent;
|
||||||
|
|
||||||
import java.util.UUID;
|
import java.util.UUID;
|
||||||
|
|
||||||
|
@ -21,6 +22,7 @@ public final class UnexpectedFangs extends CardImpl {
|
||||||
.setText("put a +1/+1 counter"));
|
.setText("put a +1/+1 counter"));
|
||||||
this.getSpellAbility().addEffect(new AddCountersTargetEffect(CounterType.LIFELINK.createInstance())
|
this.getSpellAbility().addEffect(new AddCountersTargetEffect(CounterType.LIFELINK.createInstance())
|
||||||
.setText("and a lifelink counter on target creature"));
|
.setText("and a lifelink counter on target creature"));
|
||||||
|
this.getSpellAbility().addTarget(new TargetCreaturePermanent());
|
||||||
}
|
}
|
||||||
|
|
||||||
private UnexpectedFangs(final UnexpectedFangs card) {
|
private UnexpectedFangs(final UnexpectedFangs card) {
|
||||||
|
|
Loading…
Reference in a new issue