mirror of
https://github.com/correl/mage.git
synced 2025-01-12 19:25:44 +00:00
* 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:
parent
8435c20b93
commit
a6fae2a38a
3 changed files with 4 additions and 4 deletions
|
@ -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";
|
||||
}
|
||||
|
||||
|
|
|
@ -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";
|
||||
}
|
||||
|
||||
|
|
|
@ -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";
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue