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);
}