Fixed Issue#48: Additional cost for creatures is not displayed

This commit is contained in:
magenoxx 2012-08-23 14:16:52 +04:00
parent 15371eab3f
commit afb5162e6a
3 changed files with 8 additions and 3 deletions

View file

@ -55,7 +55,7 @@ public class StitchedDrake extends CardImpl<StitchedDrake> {
this.addAbility(FlyingAbility.getInstance());
// As an addition cost to cast Stitched Drake, exile a creature card from your graveyard.
// As an additional cost to cast Stitched Drake, exile a creature card from your graveyard.
this.getSpellAbility().addCost(new ExileFromGraveCost(new TargetCardInYourGraveyard(new FilterCreatureCard("creature card from your graveyard"))));
}

View file

@ -89,7 +89,7 @@ class SilvergillAdeptCost extends CostImpl<SilvergillAdeptCost> {
}
public SilvergillAdeptCost() {
this.text = "As an additional cost to cast Silvergill Adept, reveal a Merfolk card from your hand or pay {3}";
this.text = "reveal a Merfolk card from your hand or pay {3}";
}
public SilvergillAdeptCost(SilvergillAdeptCost cost) {