mirror of
https://github.com/correl/mage.git
synced 2024-12-26 11:09:27 +00:00
Small fixes to Ballynock Tapper, Belligerent Hatchling, Angelic Overseer, Aegis Angel
This commit is contained in:
parent
0e45b25455
commit
1016b87c9f
4 changed files with 4 additions and 4 deletions
|
@ -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) {
|
||||||
|
|
|
@ -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) {
|
||||||
|
|
|
@ -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");
|
||||||
|
|
|
@ -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);
|
||||||
|
|
Loading…
Reference in a new issue