this.color.setWhite(true);
this.power = new MageInt(3);
this.toughness = new MageInt(4);
// Battle cry (Whenever this creature attacks, each other attacking creature gets +1/+0 until end of turn.)
this.addAbility(new BattleCryAbility());
// Whenever Hero of Bladehold attacks, put two 1/1 white Soldier creature tokens onto the battlefield tapped and attacking.
this.addAbility(new AttacksTriggeredAbility(new CreateTokenEffect(new SoldierToken(), 2, true, true), false));
}