mirror of
https://github.com/correl/mage.git
synced 2024-11-15 19:19:33 +00:00
* Hundred-Talon Strike - Fixed missing target definition.
This commit is contained in:
parent
90203b52fe
commit
7431d0b465
1 changed files with 2 additions and 0 deletions
|
@ -44,6 +44,7 @@ import mage.filter.predicate.Predicates;
|
|||
import mage.filter.predicate.mageobject.ColorPredicate;
|
||||
import mage.filter.predicate.permanent.TappedPredicate;
|
||||
import mage.target.common.TargetControlledCreaturePermanent;
|
||||
import mage.target.common.TargetCreaturePermanent;
|
||||
|
||||
/**
|
||||
*
|
||||
|
@ -71,6 +72,7 @@ public class HundredTalonStrike extends CardImpl {
|
|||
effect = new GainAbilityTargetEffect(FirstStrikeAbility.getInstance(), Duration.EndOfTurn);
|
||||
effect.setText("and gains first strike until end of turn");
|
||||
this.getSpellAbility().addEffect(effect);
|
||||
this.getSpellAbility().addTarget(new TargetCreaturePermanent());
|
||||
// Splice onto Arcane-Tap an untapped white creature you control.
|
||||
this.addAbility(new SpliceOntoArcaneAbility(new TapTargetCost(new TargetControlledCreaturePermanent(1,1,filter,false))));
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue