* Frostwielder, Kumano, Master Yambushi, Kumanos Pupils - Fixed that the exile effect did only work during the turn the creature came into play.

This commit is contained in:
LevelX2 2013-07-20 23:02:15 +02:00
parent 8435c20b93
commit a6fae2a38a
3 changed files with 4 additions and 4 deletions

View file

@ -67,8 +67,8 @@ public class Frostwielder extends CardImpl<Frostwielder> {
// {T}: Frostwielder deals 1 damage to target creature or player.
Ability ability = new SimpleActivatedAbility(Zone.BATTLEFIELD, new DamageTargetEffect(1), new TapSourceCost());
ability.addTarget(new TargetCreatureOrPlayer());
// If a creature dealt damage by Frostwielder this turn would die, exile it instead.
this.addAbility(ability);
// If a creature dealt damage by Frostwielder this turn would die, exile it instead.
this.addAbility(new SimpleStaticAbility(Zone.BATTLEFIELD, new FrostwielderEffect()));
this.addWatcher(new DamagedByWatcher());
@ -89,7 +89,7 @@ public class Frostwielder extends CardImpl<Frostwielder> {
class FrostwielderEffect extends ReplacementEffectImpl<FrostwielderEffect> {
public FrostwielderEffect() {
super(Duration.EndOfTurn, Outcome.Exile);
super(Duration.WhileOnBattlefield, Outcome.Exile);
staticText = "If a creature dealt damage by {this} this turn would die, exile it instead";
}

View file

@ -91,7 +91,7 @@ public class KumanoMasterYamabushi extends CardImpl<KumanoMasterYamabushi> {
class KumanaoMasterYamabushiEffect extends ReplacementEffectImpl<KumanaoMasterYamabushiEffect> {
public KumanaoMasterYamabushiEffect() {
super(Duration.EndOfTurn, Outcome.Exile);
super(Duration.WhileOnBattlefield, Outcome.Exile);
staticText = "If a creature dealt damage by {this} this turn would die, exile it instead";
}

View file

@ -81,7 +81,7 @@ public class KumanosPupils extends CardImpl<KumanosPupils> {
class KumanosPupilsEffect extends ReplacementEffectImpl<KumanosPupilsEffect> {
public KumanosPupilsEffect() {
super(Duration.EndOfTurn, Outcome.Exile);
super(Duration.WhileOnBattlefield, Outcome.Exile);
staticText = "If a creature dealt damage by {this} this turn would die, exile it instead";
}