mirror of
https://github.com/correl/mage.git
synced 2024-12-25 11:11:16 +00:00
Merge pull request #5060 from jgalrito/bug/5056/departed-deckand
fixed Departed Deckand p/t
This commit is contained in:
commit
94aa52f4af
1 changed files with 4 additions and 0 deletions
|
@ -20,6 +20,7 @@ import mage.filter.common.FilterCreaturePermanent;
|
||||||
import mage.filter.predicate.Predicates;
|
import mage.filter.predicate.Predicates;
|
||||||
import mage.filter.predicate.mageobject.SubtypePredicate;
|
import mage.filter.predicate.mageobject.SubtypePredicate;
|
||||||
import mage.target.common.TargetControlledCreaturePermanent;
|
import mage.target.common.TargetControlledCreaturePermanent;
|
||||||
|
import mage.MageInt;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
*
|
*
|
||||||
|
@ -39,6 +40,9 @@ public final class DepartedDeckhand extends CardImpl {
|
||||||
this.subtype.add(SubType.SPIRIT);
|
this.subtype.add(SubType.SPIRIT);
|
||||||
this.subtype.add(SubType.PIRATE);
|
this.subtype.add(SubType.PIRATE);
|
||||||
|
|
||||||
|
this.power = new MageInt(2);
|
||||||
|
this.toughness = new MageInt(2);
|
||||||
|
|
||||||
// When Departed Deckhand becomes the target of a spell, sacrifice it.
|
// When Departed Deckhand becomes the target of a spell, sacrifice it.
|
||||||
this.addAbility(new BecomesTargetTriggeredAbility(
|
this.addAbility(new BecomesTargetTriggeredAbility(
|
||||||
new SacrificeSourceEffect(),
|
new SacrificeSourceEffect(),
|
||||||
|
|
Loading…
Reference in a new issue