super(ownerId, 221, "Meteorite", Rarity.UNCOMMON, new CardType[]{CardType.ARTIFACT}, "{5}");
this.expansionSetCode = "M15";
// When Meteorite enters the battlefield, it deals 2 damage to target creature or player.
Ability ability = new EntersBattlefieldTriggeredAbility(new DamageTargetEffect(2), false);
ability.addTarget(new TargetCreatureOrPlayer());
this.addAbility(ability);
// {T}: Add one mana of any color to your mana pool.
this.addAbility(new AnyColorManaAbility());
}