this.power = new MageInt(2);
this.toughness = new MageInt(5);
// Whenever Bazaar Krovod attacks, another target attacking creature gets +0/+2 until end of turn. Untap that creature.
Ability ability = new AttacksTriggeredAbility(new BazaarKrovodEffect(), false);
ability.addTarget(new TargetAttackingCreature(1, 1, filter, false));
this.addAbility(ability);
}