this.subtype.add("Ajani");
this.color.setRed(true);
this.color.setWhite(true);
this.loyalty = new MageInt(3);
LoyaltyAbility ability1 = new LoyaltyAbility(new SkipNextUntapTargetEffect(), 1);
ability1.addTarget(new TargetPermanent());
this.addAbility(ability1);
Effects effects1 = new Effects();
effects1.add(new DamageTargetEffect(3));
effects1.add(new GainLifeEffect(3));
LoyaltyAbility ability2 = new LoyaltyAbility(effects1, -2);
ability2.addTarget(new TargetCreatureOrPlayer());
this.addAbility(ability2);
FilterPermanent filter = new FilterPermanent("lands");
filter.getCardType().add(CardType.LAND);
LoyaltyAbility ability3 = new LoyaltyAbility(new DestroyAllControlledTargetEffect(filter), -7);
ability3.addTarget(new TargetPlayer());
this.addAbility(ability3);
}