fixed missing card colors.

This commit is contained in:
magenoxx 2011-10-16 02:17:38 +04:00
parent 2926f0b6cb
commit 6f34937dd0
2 changed files with 4 additions and 0 deletions

View file

@ -49,6 +49,8 @@ public class CouriersCapsule extends CardImpl<CouriersCapsule> {
public CouriersCapsule (UUID ownerId) {
super(ownerId, 37, "Courier's Capsule", Rarity.COMMON, new CardType[]{CardType.ARTIFACT}, "{1}{U}");
this.expansionSetCode = "ALA";
this.color.setBlue(true);
Ability ability = new SimpleActivatedAbility(Zone.BATTLEFIELD, new DrawCardControllerEffect(2), new ManaCostsImpl("{1}{U}"));
ability.addCost(new SacrificeSourceCost());
this.addAbility(ability);

View file

@ -50,6 +50,8 @@ public class OnyxGoblet extends CardImpl<OnyxGoblet> {
public OnyxGoblet (UUID ownerId) {
super(ownerId, 81, "Onyx Goblet", Rarity.COMMON, new CardType[]{CardType.ARTIFACT}, "{2}{B}");
this.expansionSetCode = "ALA";
this.color.setBlack(true);
Ability ability = new SimpleActivatedAbility(Zone.BATTLEFIELD, new LoseLifeTargetEffect(1), new TapSourceCost());
ability.addTarget(new TargetPlayer());
this.addAbility(ability);