mirror of
https://github.com/magefree/mage.git
synced 2026-01-22 03:09:53 -08:00
* Touch of Moonglove - Fixed that the dealayed trigger only worked for one creature instead of for all damaged creatures.
This commit is contained in:
parent
cb083d73e4
commit
540f1f2eac
2 changed files with 84 additions and 2 deletions
|
|
@ -69,7 +69,6 @@ public class TouchOfMoonglove extends CardImpl {
|
|||
DeathtouchAbility.getInstance(), Duration.EndOfTurn, "and gains deathtouch until end of turn"));
|
||||
this.getSpellAbility().addTarget(new TargetControlledCreaturePermanent());
|
||||
// Whenever a creature dealt damage by that creature this turn dies, its controller loses 2 life.
|
||||
// this.getSpellAbility().addEffect(new CreateDelayedTriggeredAbilityEffect(null));
|
||||
this.getSpellAbility().addEffect(new TouchOfMoongloveAddTriggerEffect());
|
||||
|
||||
}
|
||||
|
|
@ -119,7 +118,7 @@ class TouchOfMoongloveDelayedTriggeredAbility extends DelayedTriggeredAbility {
|
|||
private final MageObjectReference creatureToCheck;
|
||||
|
||||
public TouchOfMoongloveDelayedTriggeredAbility(MageObjectReference creatureToCheck) {
|
||||
super(new DamageTargetEffect(2), Duration.EndOfTurn);
|
||||
super(new DamageTargetEffect(2), Duration.EndOfTurn, false);
|
||||
this.creatureToCheck = creatureToCheck;
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue