this.toughness = new MageInt(5);
this.addAbility(FlyingAbility.getInstance());
this.addAbility(FirstStrikeAbility.getInstance());
this.addAbility(LifelinkAbility.getInstance());
FilterPermanent filter1 = new FilterCreaturePermanent("Demon");
filter1.getSubtype().add("Demon");
this.addAbility(new ProtectionAbility(filter1));
FilterPermanent filter2 = new FilterCreaturePermanent("Dragon");
filter2.getSubtype().add("Dragon");
this.addAbility(new ProtectionAbility(filter2));
}