Fixed Watchwolf. Fixed RiseFromTheGrave.

This commit is contained in:
magenoxx 2011-09-22 18:15:58 +04:00
parent a6258cfc7e
commit 3bbc63d6c4
2 changed files with 6 additions and 4 deletions

View file

@ -74,7 +74,7 @@ public class RiseFromTheGrave extends CardImpl<RiseFromTheGrave> {
class RiseFromTheGraveEffect extends ContinuousEffectImpl<RiseFromTheGraveEffect> {
public RiseFromTheGraveEffect() {
super(Duration.WhileOnBattlefield, Outcome.Neutral);
super(Duration.Custom, Outcome.Neutral);
staticText = "That creature is a black Zombie in addition to its other colors and types";
}
@ -104,7 +104,9 @@ class RiseFromTheGraveEffect extends ContinuousEffectImpl<RiseFromTheGraveEffect
break;
}
return true;
}
} else {
this.used = true;
}
return false;
}

View file

@ -36,14 +36,14 @@ import mage.cards.CardImpl;
/**
*
* @author Loki
* @author Loki, nantuko
*/
public class Watchwolf extends CardImpl<Watchwolf> {
public Watchwolf (UUID ownerId) {
super(ownerId, 239, "Watchwolf", Rarity.UNCOMMON, new CardType[]{CardType.CREATURE}, "{G}{W}");
this.expansionSetCode = "RAV";
this.subtype.add("");
this.subtype.add("Wolf");
this.color.setGreen(true);
this.color.setWhite(true);
this.power = new MageInt(3);