// Trample
this.addAbility(TrampleAbility.getInstance());
// When you cast Naya Soulbeast, each player reveals the top card of his or her library. Naya Soulbeast enters the battlefield with X +1/+1 counters on it, where X is the total converted mana cost of all cards revealed this way.
Ability ability = new CastSourceTriggeredAbility(new NayaSoulbeastCastEffect(), false);
ability.addEffect(new NayaSoulbeastReplacementEffect());
this.addAbility(ability);
}
public NayaSoulbeast(final NayaSoulbeast card) {
super(card);