forked from External/mage
[CMM] Implement Ghoulish Impetus (#10687)
This commit is contained in:
parent
b79964530e
commit
16094a9311
4 changed files with 99 additions and 5 deletions
|
|
@ -6,6 +6,7 @@ import mage.abilities.Mode;
|
|||
import mage.abilities.effects.Effect;
|
||||
import mage.abilities.effects.OneShotEffect;
|
||||
import mage.game.Game;
|
||||
import mage.target.targetpointer.TargetPointer;
|
||||
|
||||
/**
|
||||
* @author BetaSteward_at_googlemail.com
|
||||
|
|
@ -77,4 +78,10 @@ public class CreateDelayedTriggeredAbilityEffect extends OneShotEffect {
|
|||
ability.getEffects().setValue(key, value);
|
||||
super.setValue(key, value);
|
||||
}
|
||||
|
||||
@Override
|
||||
public Effect setTargetPointer(TargetPointer targetPointer) {
|
||||
ability.getEffects().setTargetPointer(targetPointer);
|
||||
return super.setTargetPointer(targetPointer);
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue