Small fixes to Ballynock Tapper, Belligerent Hatchling, Angelic Overseer, Aegis Angel

This commit is contained in:
LevelX 2011-12-13 21:21:48 +01:00
parent 0e45b25455
commit 1016b87c9f
4 changed files with 4 additions and 4 deletions

View file

@ -53,7 +53,7 @@ public class BallynockTrapper extends CardImpl<BallynockTrapper> {
static { static {
filterWhiteSpell.setUseColor(true); filterWhiteSpell.setUseColor(true);
filterWhiteSpell.setColor(ObjectColor.RED); filterWhiteSpell.setColor(ObjectColor.WHITE);
} }
public BallynockTrapper(UUID ownerId) { public BallynockTrapper(UUID ownerId) {

View file

@ -54,7 +54,7 @@ public class BelligerentHatchling extends CardImpl<BelligerentHatchling> {
filterRedSpell.setUseColor(true); filterRedSpell.setUseColor(true);
filterRedSpell.setColor(ObjectColor.RED); filterRedSpell.setColor(ObjectColor.RED);
filterWhiteSpell.setUseColor(true); filterWhiteSpell.setUseColor(true);
filterWhiteSpell.setColor(ObjectColor.RED); filterWhiteSpell.setColor(ObjectColor.WHITE);
} }
public BelligerentHatchling(UUID ownerId) { public BelligerentHatchling(UUID ownerId) {

View file

@ -49,7 +49,7 @@ import mage.filter.common.FilterControlledPermanent;
public class AngelicOverseer extends CardImpl<AngelicOverseer> { public class AngelicOverseer extends CardImpl<AngelicOverseer> {
private static final String rule = "As long as you control a Human, {this} has hexproof and is indestructible."; private static final String rule = "As long as you control a Human, {this} has hexproof and is indestructible.";
private static final FilterControlledPermanent filter = new FilterControlledPermanent("Plains"); private static final FilterControlledPermanent filter = new FilterControlledPermanent("Human");
static { static {
filter.getSubtype().add("Human"); filter.getSubtype().add("Human");

View file

@ -57,7 +57,7 @@ public class AegisAngel extends CardImpl<AegisAngel> {
this.power = new MageInt(5); this.power = new MageInt(5);
this.toughness = new MageInt(5); this.toughness = new MageInt(5);
this.addAbility(FlyingAbility.getInstance()); this.addAbility(FlyingAbility.getInstance());
FilterPermanent filter = new FilterPermanent("another"); FilterPermanent filter = new FilterPermanent("another target permanent");
filter.setAnother(true); filter.setAnother(true);
Ability ability = new EntersBattlefieldTriggeredAbility(new GainAbilityTargetEffect(IndestructibleAbility.getInstance(), Constants.Duration.WhileOnBattlefield), false); Ability ability = new EntersBattlefieldTriggeredAbility(new GainAbilityTargetEffect(IndestructibleAbility.getInstance(), Constants.Duration.WhileOnBattlefield), false);
Target target = new TargetPermanent(filter); Target target = new TargetPermanent(filter);