updated all cards that use any target (with a few possible exceptions, it's hard to tell)

This commit is contained in:
Evan Kranzler 2018-04-19 14:41:38 -04:00
parent 53e5ac86c9
commit f072ba8d37
475 changed files with 638 additions and 643 deletions

View file

@ -45,7 +45,7 @@ import mage.target.common.TargetAnyTarget;
public class DevilToken extends TokenImpl {
public DevilToken() {
super("Devil", "1/1 red Devil creature with \"When this creature dies, it deals 1 damage to target creature or player.\"");
super("Devil", "1/1 red Devil creature with \"When this creature dies, it deals 1 damage to any target.\"");
availableImageSetCodes.addAll(Collections.singletonList("SOI"));
cardType.add(CardType.CREATURE);
subtype.add(SubType.DEVIL);
@ -53,7 +53,7 @@ public class DevilToken extends TokenImpl {
power = new MageInt(1);
toughness = new MageInt(1);
Effect effect = new DamageTargetEffect(1);
effect.setText("it deals 1 damage to target creature or player");
effect.setText("it deals 1 damage to any target");
Ability ability = new DiesTriggeredAbility(effect);
ability.addTarget(new TargetAnyTarget());
this.addAbility(ability);