this.color.setWhite(true);
this.addAbility(new EntersBattlefieldAbility(new AddCountersSourceEffect(CounterType.LOYALTY.createInstance(4)), false));
// +1: Put three 1/1 white Soldier creature tokens onto the battlefield.
this.addAbility(new LoyaltyAbility(new CreateTokenEffect(new SoldierToken(), 3), 1));
// -3: Destroy all creatures with power 4 or greater.
this.addAbility(new LoyaltyAbility(new DestroyAllEffect(filter), -3));
// -7: You get an emblem with "Creatures you control get +2/+2 and have flying."
this.addAbility(new LoyaltyAbility(new GetEmblemEffect(new ElspethSunsChampionEmblem()), -7));
}