mirror of
https://github.com/magefree/mage.git
synced 2026-01-09 12:22:10 -08:00
Fixed Watchwolf. Fixed RiseFromTheGrave.
This commit is contained in:
parent
a6258cfc7e
commit
3bbc63d6c4
2 changed files with 6 additions and 4 deletions
|
|
@ -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;
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -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);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue