forked from External/mage
text fixes
This commit is contained in:
parent
11e54fa367
commit
f482eef06a
6 changed files with 11 additions and 11 deletions
|
|
@ -54,7 +54,7 @@ public final class CraigBooneNovacGuard extends CardImpl {
|
|||
new PutCountersSourceCost(CounterType.QUEST.createInstance(2)),
|
||||
"", false
|
||||
), 2
|
||||
).withFlavorWord("One for my Baby"));
|
||||
).withFlavorWord("One for My Baby"));
|
||||
}
|
||||
|
||||
private CraigBooneNovacGuard(final CraigBooneNovacGuard card) {
|
||||
|
|
@ -111,4 +111,4 @@ class CraigBooneNovacGuardEffect extends OneShotEffect {
|
|||
return true;
|
||||
}
|
||||
|
||||
}
|
||||
}
|
||||
|
|
|
|||
|
|
@ -38,7 +38,8 @@ public final class GlowingOne extends CardImpl {
|
|||
|
||||
// Whenever Glowing One deals combat damage to a player, they get four rad counters.
|
||||
this.addAbility(new DealsCombatDamageToAPlayerTriggeredAbility(
|
||||
new AddCountersTargetEffect(CounterType.RAD.createInstance(4)), false, true)
|
||||
new AddCountersTargetEffect(CounterType.RAD.createInstance(4))
|
||||
.setText("they get four rad counters"), false, true)
|
||||
);
|
||||
|
||||
// Whenever a player mills a nonland card, you gain 1 life.
|
||||
|
|
|
|||
|
|
@ -45,7 +45,7 @@ public final class InfestingRadroach extends CardImpl {
|
|||
|
||||
// Whenever Infesting Radroach deals combat damage to a player, they get that many rad counters.
|
||||
this.addAbility(new DealsDamageToAPlayerTriggeredAbility(
|
||||
new AddCountersTargetEffect(CounterType.RAD.createInstance(), SavedDamageValue.MANY),
|
||||
new AddCountersTargetEffect(CounterType.RAD.createInstance(), SavedDamageValue.MANY).setText("they get that many rad counters"),
|
||||
false, true
|
||||
));
|
||||
|
||||
|
|
@ -65,4 +65,4 @@ public final class InfestingRadroach extends CardImpl {
|
|||
public InfestingRadroach copy() {
|
||||
return new InfestingRadroach(this);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
|||
|
|
@ -51,7 +51,7 @@ class CastFromGraveyardOnceEffect extends AsThoughEffectImpl {
|
|||
super(AsThoughEffectType.CAST_FROM_NOT_OWN_HAND_ZONE, Duration.WhileOnBattlefield, Outcome.Benefit);
|
||||
this.filter = filter;
|
||||
this.staticText = "Once during each of your turns, you may cast " + filter.getMessage()
|
||||
+ (filter.getMessage().contains("from your graveyard") ? "" : " from your graveyard");
|
||||
+ (filter.getMessage().contains("your graveyard") ? "" : " from your graveyard");
|
||||
}
|
||||
|
||||
private CastFromGraveyardOnceEffect(final CastFromGraveyardOnceEffect effect) {
|
||||
|
|
|
|||
|
|
@ -1,14 +1,13 @@
|
|||
|
||||
package mage.abilities.costs.common;
|
||||
|
||||
import java.util.UUID;
|
||||
import mage.abilities.Ability;
|
||||
import mage.abilities.costs.Cost;
|
||||
import mage.abilities.costs.CostImpl;
|
||||
import mage.counters.Counter;
|
||||
import mage.game.Game;
|
||||
import mage.game.permanent.Permanent;
|
||||
import mage.util.CardUtil;
|
||||
|
||||
import java.util.UUID;
|
||||
|
||||
/**
|
||||
*
|
||||
|
|
@ -20,7 +19,7 @@ public class PutCountersSourceCost extends CostImpl {
|
|||
|
||||
public PutCountersSourceCost(Counter counter) {
|
||||
this.counter = counter.copy();
|
||||
this.text = "Put " + counter.getDescription() + " on {this}";
|
||||
this.text = "put " + counter.getDescription() + " on {this}";
|
||||
}
|
||||
|
||||
public PutCountersSourceCost(PutCountersSourceCost cost) {
|
||||
|
|
|
|||
|
|
@ -43,6 +43,6 @@ public enum SourceControllerCountersCount implements DynamicValue {
|
|||
|
||||
@Override
|
||||
public String getMessage() {
|
||||
return counterType.getName() + " you have";
|
||||
return counterType.getName() + " counter you have";
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue