Texts update: to target creature or player => to any target

This commit is contained in:
Oleg Agafonov 2018-04-22 08:15:40 +04:00
parent 63e7358eb5
commit 23becf1775
64 changed files with 1236 additions and 1236 deletions

View file

@ -48,7 +48,7 @@ import mage.target.common.TargetAnyTarget;
* @author spjspj
*/
public class ArlinnEmbracedByTheMoonEmblem extends Emblem {
// "Creatures you control have haste and '{T}: This creature deals damage equal to its power to target creature or player.'"
// "Creatures you control have haste and '{T}: This creature deals damage equal to its power to any target.'"
public ArlinnEmbracedByTheMoonEmblem() {
this.setName("Emblem Arlinn");
@ -57,11 +57,11 @@ public class ArlinnEmbracedByTheMoonEmblem extends Emblem {
effect.setText("Creatures you control have haste");
Ability ability = new SimpleStaticAbility(Zone.COMMAND, effect);
Effect effect2 = new DamageTargetEffect(new SourcePermanentPowerCount());
effect2.setText("This creature deals damage equal to its power to target creature or player");
effect2.setText("This creature deals damage equal to its power to any target");
Ability ability2 = new SimpleActivatedAbility(Zone.BATTLEFIELD, effect2, new TapSourceCost());
ability2.addTarget(new TargetAnyTarget());
effect = new GainAbilityControlledEffect(ability2, Duration.EndOfGame, filter);
effect.setText("and '{T}: This creature deals damage equal to its power to target creature or player");
effect.setText("and '{T}: This creature deals damage equal to its power to any target");
ability.addEffect(effect);
this.getAbilities().add(ability);
}

View file

@ -42,11 +42,11 @@ import mage.target.common.TargetAnyTarget;
*/
public class ChandraTorchOfDefianceEmblem extends Emblem {
// You get an emblem with "Whenever you cast a spell, this emblem deals 5 damage to target creature or player."
// You get an emblem with "Whenever you cast a spell, this emblem deals 5 damage to any target."
public ChandraTorchOfDefianceEmblem() {
this.setName("Emblem Chandra");
Effect effect = new DamageTargetEffect(5);
effect.setText("this emblem deals 5 damage to target creature or player");
effect.setText("this emblem deals 5 damage to any target");
Ability ability = new SpellCastControllerTriggeredAbility(Zone.COMMAND, effect, new FilterSpell("a spell"), false, false);
ability.addTarget(new TargetAnyTarget());
getAbilities().add(ability);

View file

@ -50,7 +50,7 @@ import mage.target.common.TargetAnyTarget;
* @author spjspj
*/
public class KothOfTheHammerEmblem extends Emblem {
// "Mountains you control have '{T}: This land deals 1 damage to target creature or player.'"
// "Mountains you control have '{T}: This land deals 1 damage to any target.'"
public KothOfTheHammerEmblem() {
this.setName("Emblem Koth");
@ -69,7 +69,7 @@ class KothOfTheHammerThirdEffect extends ContinuousEffectImpl {
public KothOfTheHammerThirdEffect() {
super(Duration.EndOfGame, Outcome.AddAbility);
staticText = "You get an emblem with \"Mountains you control have '{T}: This land deals 1 damage to target creature or player.'\"";
staticText = "You get an emblem with \"Mountains you control have '{T}: This land deals 1 damage to any target.'\"";
}
public KothOfTheHammerThirdEffect(final KothOfTheHammerThirdEffect effect) {