this.color.setWhite(true);
this.power = new MageInt(4);
this.toughness = new MageInt(4);
// Whenever Anafenza, the Foremost attacks, put a +1/+1 counter on another target tapped creature you control.
Ability ability = new AttacksTriggeredAbility(new AddCountersTargetEffect(CounterType.P1P1.createInstance()), false);
ability.addTarget(new TargetControlledCreaturePermanent(filter));
this.addAbility(ability);
// If a creature card would be put into an opponent's graveyard from anywhere, exile it instead.
this.addAbility(new SimpleStaticAbility(Zone.BATTLEFIELD, new AnafenzaTheForemostEffect()));