this.toughness = new MageInt(3);
// Inspired - Whenever King Macar, the Gold-Cursed becomes untapped, you may exile target creature. If you do, put a colorless artifact token named Gold onto the battlefield. It has "Sacrifice this artifact: Add one mana of any color to your mana pool."
Ability ability = new InspiredAbility(new ExileTargetEffect(), true);
ability.addTarget(new TargetCreaturePermanent());
Effect effect = new CreateTokenEffect(new GoldToken());
effect.setText("If you do, put a colorless artifact token named Gold onto the battlefield. It has \"Sacrifice this artifact: Add one mana of any color to your mana pool.\"");
ability.addEffect(effect);
this.addAbility(ability);
}