mirror of
https://github.com/correl/mage.git
synced 2024-11-15 03:00:16 +00:00
fix Clutch of the Undercity
targets permanents, not creatures
This commit is contained in:
parent
3b4af2243c
commit
ef66c58570
1 changed files with 2 additions and 2 deletions
|
@ -35,7 +35,7 @@ import mage.abilities.effects.common.LoseLifeTargetControllerEffect;
|
|||
import mage.abilities.effects.common.ReturnToHandTargetEffect;
|
||||
import mage.abilities.keyword.TransmuteAbility;
|
||||
import mage.cards.CardImpl;
|
||||
import mage.target.common.TargetCreaturePermanent;
|
||||
import mage.target.TargetPermanent;
|
||||
|
||||
/**
|
||||
* @author Loki
|
||||
|
@ -50,7 +50,7 @@ public class ClutchOfTheUndercity extends CardImpl {
|
|||
// Return target permanent to its owner's hand. Its controller loses 3 life.
|
||||
this.getSpellAbility().addEffect(new ReturnToHandTargetEffect());
|
||||
this.getSpellAbility().addEffect(new LoseLifeTargetControllerEffect(3));
|
||||
this.getSpellAbility().addTarget(new TargetCreaturePermanent());
|
||||
this.getSpellAbility().addTarget(new TargetPermanent());
|
||||
// Transmute {1}{U}{B}
|
||||
this.addAbility(new TransmuteAbility("{1}{U}{B}"));
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue