fixed some text

This commit is contained in:
Evan Kranzler 2021-04-19 18:33:18 -04:00
parent c4754936f5
commit 6c6311ac71
12 changed files with 14 additions and 13 deletions

View file

@ -33,7 +33,7 @@ public final class AvatarOfMight extends CardImpl {
// If an opponent controls at least four more creatures than you, Avatar of Might costs {6} less to cast.
this.addAbility(new SimpleStaticAbility(Zone.ALL, new SpellCostReductionSourceEffect(6, condition)
.setText("If an opponent controls at least four more creatures than you, {this} costs {6} less to cast"))
.setText("If an opponent controls at least four more creatures than you, this spell costs {6} less to cast"))
.addHint(new ConditionHint(condition, "Opponent controls at least four more creatures than you"))
);

View file

@ -39,7 +39,7 @@ public final class AvatarOfWoe extends CardImpl {
// If there are ten or more creature cards total in all graveyards, Avatar of Woe costs {6} less to cast.
this.addAbility(new SimpleStaticAbility(Zone.ALL, new SpellCostReductionSourceEffect(6, condition)
.setText("If there are ten or more creature cards total in all graveyards, {this} costs {6} less to cast"))
.setText("If there are ten or more creature cards total in all graveyards, this spell costs {6} less to cast"))
.addHint(new ValueHint("Creature cards in all graveyards", graveyardCount))
);

View file

@ -59,7 +59,7 @@ class BonePickerAdjustingCostsEffect extends CostModificationEffectImpl {
BonePickerAdjustingCostsEffect() {
super(Duration.EndOfGame, Outcome.Benefit, CostModificationType.REDUCE_COST);
staticText = "{this} costs {3} less to cast if a creature died this turn";
staticText = "this spell costs {3} less to cast if a creature died this turn";
}
BonePickerAdjustingCostsEffect(BonePickerAdjustingCostsEffect effect) {

View file

@ -55,7 +55,7 @@ class DracoCostReductionEffect extends CostModificationEffectImpl {
public DracoCostReductionEffect() {
super(Duration.WhileOnStack, Outcome.Benefit, CostModificationType.REDUCE_COST);
staticText = "<i>Domain</i> &mdash; {this} costs {2} less to cast for each basic land type among lands you control.";
staticText = "<i>Domain</i> &mdash; This spell costs {2} less to cast for each basic land type among lands you control.";
}
protected DracoCostReductionEffect(final DracoCostReductionEffect effect) {

View file

@ -79,7 +79,7 @@ class EmrakulThePromisedEndCostReductionEffect extends CostModificationEffectImp
EmrakulThePromisedEndCostReductionEffect() {
super(Duration.WhileOnStack, Outcome.Benefit, CostModificationType.REDUCE_COST);
staticText = "{this} costs {1} less to cast for each card type among cards in your graveyard";
staticText = "this spell costs {1} less to cast for each card type among cards in your graveyard";
}
EmrakulThePromisedEndCostReductionEffect(EmrakulThePromisedEndCostReductionEffect effect) {

View file

@ -56,7 +56,8 @@ class FireballEffect extends OneShotEffect {
public FireballEffect() {
super(Outcome.Damage);
staticText = "{this} deals X damage divided evenly, rounded down, among any number of target creatures and/or players.\n {this} costs {1} more to cast for each target beyond the first";
staticText = "this spell costs {1} more to cast for each target beyond the first.<br> {this} deals " +
"X damage divided evenly, rounded down, among any number of target creatures and/or players.";
}
public FireballEffect(final FireballEffect effect) {

View file

@ -66,7 +66,7 @@ class GhaltaPrimalHungerCostReductionEffect extends CostModificationEffectImpl {
GhaltaPrimalHungerCostReductionEffect() {
super(Duration.Custom, Outcome.Benefit, CostModificationType.REDUCE_COST);
staticText = "{this} costs {X} less to cast, where X is the total power of creatures you control";
staticText = "this spell costs {X} less to cast, where X is the total power of creatures you control";
}
GhaltaPrimalHungerCostReductionEffect(final GhaltaPrimalHungerCostReductionEffect effect) {

View file

@ -71,7 +71,7 @@ class LiciaSanguineTribuneCostReductionEffect extends CostModificationEffectImpl
LiciaSanguineTribuneCostReductionEffect() {
super(Duration.WhileOnStack, Outcome.Benefit, CostModificationType.REDUCE_COST);
staticText = "{this} costs {1} less to cast for each 1 life you have gained this turn.";
staticText = "this spell costs {1} less to cast for each 1 life you have gained this turn.";
}
LiciaSanguineTribuneCostReductionEffect(LiciaSanguineTribuneCostReductionEffect effect) {

View file

@ -64,7 +64,7 @@ class MetalworkColossusCostReductionEffect extends CostModificationEffectImpl {
MetalworkColossusCostReductionEffect() {
super(Duration.Custom, Outcome.Benefit, CostModificationType.REDUCE_COST);
staticText = "{this} costs {X} less to cast, where X is the total mana value of noncreature artifacts you control";
staticText = "this spell costs {X} less to cast, where X is the total mana value of noncreature artifacts you control";
}
MetalworkColossusCostReductionEffect(final MetalworkColossusCostReductionEffect effect) {

View file

@ -27,8 +27,8 @@ public final class PhyrexianPurge extends CardImpl {
// Destroy any number of target creatures.
// Phyrexian Purge costs 3 life more to cast for each target.
this.getSpellAbility().addTarget(new TargetCreaturePermanent(0, Integer.MAX_VALUE));
this.getSpellAbility().addEffect(new DestroyMultiTargetEffect());
this.getSpellAbility().addEffect(new InfoEffect("<br><br>{this} costs 3 life more to cast for each target"));
this.getSpellAbility().addEffect(new InfoEffect("this spell costs 3 life more to cast for each target"));
this.getSpellAbility().addEffect(new DestroyMultiTargetEffect().concatBy("<br>"));
this.getSpellAbility().setTargetAdjuster(PhyrexianPurgeTargetAdjuster.instance);
this.getSpellAbility().setCostAdjuster(PhyrexianPurgeCostAdjuster.instance);
}

View file

@ -74,7 +74,7 @@ class PrimevalProtectorCostReductionEffect extends CostModificationEffectImpl {
PrimevalProtectorCostReductionEffect() {
super(Duration.WhileOnStack, Outcome.Benefit, CostModificationType.REDUCE_COST);
staticText = "{this} costs {1} less to cast for each creature your opponents control";
staticText = "this spell costs {1} less to cast for each creature your opponents control";
}
PrimevalProtectorCostReductionEffect(PrimevalProtectorCostReductionEffect effect) {

View file

@ -51,7 +51,7 @@ class StratadonCostReductionEffect extends CostModificationEffectImpl {
public StratadonCostReductionEffect() {
super(Duration.WhileOnStack, Outcome.Benefit, CostModificationType.REDUCE_COST);
staticText = "<i>Domain</i> &mdash; {this} costs {1} less to cast for each basic land type among lands you control.";
staticText = "<i>Domain</i> &mdash; This spell costs {1} less to cast for each basic land type among lands you control.";
}
protected StratadonCostReductionEffect(final StratadonCostReductionEffect effect) {