this.power = new MageInt(5);
this.toughness = new MageInt(4);
// Whenever an opponent casts a spell, Kaervek the Merciless deals damage to target creature or player equal to that spell's converted mana cost.
Ability ability = new SpellCastOpponentTriggeredAbility(Zone.BATTLEFIELD, new KaervekTheMercilessEffect(), new FilterSpell(), false, SetTargetPointer.SPELL);
ability.addTarget(new TargetCreatureOrPlayer());
this.addAbility(ability);
}
public KaervekTheMerciless(final KaervekTheMerciless card) {