mirror of
https://github.com/magefree/mage.git
synced 2025-12-25 04:52:07 -08:00
updated all cards that use any target (with a few possible exceptions, it's hard to tell)
This commit is contained in:
parent
53e5ac86c9
commit
f072ba8d37
475 changed files with 638 additions and 643 deletions
|
|
@ -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);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue