mirror of
https://github.com/correl/mage.git
synced 2024-11-15 11:09:30 +00:00
Fix
This commit is contained in:
parent
c969283057
commit
877560d57b
2 changed files with 2 additions and 7 deletions
|
@ -28,7 +28,6 @@
|
|||
package mage.cards.d;
|
||||
|
||||
import mage.abilities.Ability;
|
||||
import mage.abilities.Mode;
|
||||
import mage.abilities.common.DiesAttachedTriggeredAbility;
|
||||
import mage.abilities.effects.OneShotEffect;
|
||||
import mage.abilities.effects.common.AttachEffect;
|
||||
|
@ -80,6 +79,7 @@ public class DeathWatch extends CardImpl {
|
|||
|
||||
public DeathWatchEffect() {
|
||||
super(Outcome.LoseLife);
|
||||
staticText = "that creature's controller loses life equal to its power and you gain life equal to its toughness.";
|
||||
}
|
||||
|
||||
public DeathWatchEffect(DeathWatchEffect copy) {
|
||||
|
@ -108,10 +108,5 @@ public class DeathWatch extends CardImpl {
|
|||
return false;
|
||||
}
|
||||
|
||||
@Override
|
||||
public String getText(Mode mode) {
|
||||
return "that creature's controller loses life equal to its power and you gain life equal to its toughness.";
|
||||
}
|
||||
|
||||
}
|
||||
}
|
||||
|
|
|
@ -50,7 +50,7 @@ public class MistformUltimus extends CardImpl {
|
|||
this.toughness = new MageInt(3);
|
||||
|
||||
// Mistform Ultimus is every creature type.
|
||||
this.addAbility(ChangelingAbility.getInstance());
|
||||
this.subtype.add(ChangelingAbility.ALL_CREATURE_TYPE); // "All Creature Type"
|
||||
}
|
||||
|
||||
public MistformUltimus(final MistformUltimus card) {
|
||||
|
|
Loading…
Reference in a new issue