mirror of
https://github.com/correl/mage.git
synced 2024-12-26 03:00:11 +00:00
[MH2] a few more text fixes
This commit is contained in:
parent
ffe75f77ed
commit
a325822334
2 changed files with 12 additions and 5 deletions
|
@ -94,7 +94,7 @@ class CarthTheLionTriggeredAbility extends TriggeredAbilityImpl {
|
|||
|
||||
@Override
|
||||
public String getRule() {
|
||||
return "Whenever {this} enters the battlefield, or a planeswalker you control dies, " + super.getRule();
|
||||
return "Whenever {this} enters the battlefield or a planeswalker you control dies, " + super.getRule();
|
||||
}
|
||||
}
|
||||
|
||||
|
@ -102,7 +102,7 @@ class CarthTheLionLoyaltyCostEffect extends CostModificationEffectImpl {
|
|||
|
||||
public CarthTheLionLoyaltyCostEffect() {
|
||||
super(Duration.WhileOnBattlefield, Outcome.Benefit, CostModificationType.INCREASE_COST);
|
||||
this.staticText = "Planeswalkers' loyalty abilities you activate cost an additonal +1 to activate";
|
||||
this.staticText = "Planeswalkers' loyalty abilities you activate cost an additional +1 to activate";
|
||||
}
|
||||
|
||||
private CarthTheLionLoyaltyCostEffect(final CarthTheLionLoyaltyCostEffect effect) {
|
||||
|
|
|
@ -53,12 +53,19 @@ public final class GristTheHungerTide extends CardImpl {
|
|||
this.addAbility(new LoyaltyAbility(new GristTheHungerTideTokenEffect(), 1));
|
||||
|
||||
// −2: You may sacrifice a creature. When you do, destroy target creature or planeswalker.
|
||||
ReflexiveTriggeredAbility ability = new ReflexiveTriggeredAbility(new DestroyTargetEffect(), false, "destroy target creature or planeswalker");
|
||||
ReflexiveTriggeredAbility ability = new ReflexiveTriggeredAbility(
|
||||
new DestroyTargetEffect(), false, "destroy target creature or planeswalker"
|
||||
);
|
||||
ability.addTarget(new TargetCreatureOrPlaneswalker());
|
||||
this.addAbility(new LoyaltyAbility(new DoWhenCostPaid(ability, new SacrificeTargetCost(new TargetControlledPermanent(StaticFilters.FILTER_CONTROLLED_CREATURE_SHORT_TEXT)), "Sacrifice a creature?"), -2));
|
||||
this.addAbility(new LoyaltyAbility(new DoWhenCostPaid(
|
||||
ability,
|
||||
new SacrificeTargetCost(new TargetControlledPermanent(
|
||||
StaticFilters.FILTER_CONTROLLED_CREATURE_SHORT_TEXT
|
||||
)), "Sacrifice a creature?"
|
||||
), -2));
|
||||
|
||||
// −5: Each opponent loses life equal to the number of creature cards in your graveyard.
|
||||
this.addAbility(new LoyaltyAbility(new LoseLifeOpponentsEffect(xValue), -5));
|
||||
this.addAbility(new LoyaltyAbility(new LoseLifeOpponentsEffect(xValue).setText("each opponent loses life equal to the number of creature cards in your graveyard"), -5));
|
||||
}
|
||||
|
||||
private GristTheHungerTide(final GristTheHungerTide card) {
|
||||
|
|
Loading…
Reference in a new issue