mirror of
https://github.com/correl/mage.git
synced 2024-11-15 11:09:30 +00:00
* Ulvenwald Tracker - Fixed rule text.
This commit is contained in:
parent
fc2ea909b6
commit
6c9a6ab58a
1 changed files with 2 additions and 2 deletions
|
@ -51,7 +51,7 @@ import mage.target.common.TargetCreaturePermanent;
|
||||||
public class UlvenwaldTracker extends CardImpl {
|
public class UlvenwaldTracker extends CardImpl {
|
||||||
|
|
||||||
public UlvenwaldTracker(UUID ownerId, CardSetInfo setInfo) {
|
public UlvenwaldTracker(UUID ownerId, CardSetInfo setInfo) {
|
||||||
super(ownerId,setInfo,new CardType[]{CardType.CREATURE},"{G}");
|
super(ownerId, setInfo, new CardType[]{CardType.CREATURE}, "{G}");
|
||||||
this.subtype.add("Human");
|
this.subtype.add("Human");
|
||||||
this.subtype.add("Shaman");
|
this.subtype.add("Shaman");
|
||||||
|
|
||||||
|
@ -64,7 +64,7 @@ public class UlvenwaldTracker extends CardImpl {
|
||||||
Target controlledTarget = new TargetControlledCreaturePermanent();
|
Target controlledTarget = new TargetControlledCreaturePermanent();
|
||||||
controlledTarget.setTargetTag(1);
|
controlledTarget.setTargetTag(1);
|
||||||
ability.addTarget(controlledTarget);
|
ability.addTarget(controlledTarget);
|
||||||
FilterCreaturePermanent filter = new FilterCreaturePermanent("another creature to fight");
|
FilterCreaturePermanent filter = new FilterCreaturePermanent();
|
||||||
filter.add(new AnotherTargetPredicate(2));
|
filter.add(new AnotherTargetPredicate(2));
|
||||||
Target secondTarget = new TargetCreaturePermanent(filter);
|
Target secondTarget = new TargetCreaturePermanent(filter);
|
||||||
secondTarget.setTargetTag(2);
|
secondTarget.setTargetTag(2);
|
||||||
|
|
Loading…
Reference in a new issue