mirror of
https://github.com/correl/mage.git
synced 2024-12-26 03:00:11 +00:00
* Canopy Stalker - Fixed must be blocked ability (fixes #6783).
This commit is contained in:
parent
2f77d1d14c
commit
461c46eec3
1 changed files with 2 additions and 1 deletions
|
@ -13,6 +13,7 @@ import mage.constants.SubType;
|
||||||
import mage.watchers.common.CreaturesDiedWatcher;
|
import mage.watchers.common.CreaturesDiedWatcher;
|
||||||
|
|
||||||
import java.util.UUID;
|
import java.util.UUID;
|
||||||
|
import mage.constants.Duration;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @author TheElk801
|
* @author TheElk801
|
||||||
|
@ -27,7 +28,7 @@ public final class CanopyStalker extends CardImpl {
|
||||||
this.toughness = new MageInt(2);
|
this.toughness = new MageInt(2);
|
||||||
|
|
||||||
// Canopy Stalker must be blocked if able.
|
// Canopy Stalker must be blocked if able.
|
||||||
this.addAbility(new SimpleStaticAbility(new MustBeBlockedByAtLeastOneSourceEffect()));
|
this.addAbility(new SimpleStaticAbility(new MustBeBlockedByAtLeastOneSourceEffect(Duration.WhileOnBattlefield)));
|
||||||
|
|
||||||
// When Canopy Stalker dies, you gain 1 life for each creature that died this turn.
|
// When Canopy Stalker dies, you gain 1 life for each creature that died this turn.
|
||||||
this.addAbility(new DiesSourceTriggeredAbility(
|
this.addAbility(new DiesSourceTriggeredAbility(
|
||||||
|
|
Loading…
Reference in a new issue