mirror of
https://github.com/correl/mage.git
synced 2024-11-15 03:00:16 +00:00
fixed missing card colors.
This commit is contained in:
parent
2926f0b6cb
commit
6f34937dd0
2 changed files with 4 additions and 0 deletions
|
@ -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);
|
||||
|
|
|
@ -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);
|
||||
|
|
Loading…
Reference in a new issue