this.power = new MageInt(2);
this.toughness = new MageInt(2);
// {1}{R}: Reckless Embermage deals 1 damage to target creature or player and 1 damage to itself.
Ability ability = new SimpleActivatedAbility(Zone.BATTLEFIELD, new DamageTargetEffect(1), new ManaCostsImpl("{1}{R}"));
ability.addEffect(new DamageSelfEffect(1));
ability.addTarget(new TargetCreatureOrPlayer());
this.addAbility(ability);
}