mirror of
https://github.com/correl/mage.git
synced 2025-03-13 01:09:53 -09:00
* Sentinel - Fixed target handling.
This commit is contained in:
parent
e9f58d20a5
commit
7e04e65e6f
1 changed files with 7 additions and 9 deletions
|
@ -33,7 +33,6 @@ import mage.abilities.Ability;
|
|||
import mage.abilities.common.SimpleActivatedAbility;
|
||||
import mage.abilities.costs.mana.GenericManaCost;
|
||||
import mage.abilities.dynamicvalue.common.StaticValue;
|
||||
import mage.abilities.effects.ContinuousEffect;
|
||||
import mage.abilities.effects.OneShotEffect;
|
||||
import mage.abilities.effects.common.continuous.SetToughnessSourceEffect;
|
||||
import mage.cards.CardImpl;
|
||||
|
@ -69,7 +68,6 @@ public class Sentinel extends CardImpl {
|
|||
new BlockingAttackerIdPredicate(this.getId())));
|
||||
// 0: Change Sentinel's base toughness to 1 plus the power of target creature blocking or blocked by Sentinel. (This effect lasts indefinitely.)
|
||||
Ability ability = new SimpleActivatedAbility(Zone.BATTLEFIELD, new SentinelEffect(), new GenericManaCost(0));
|
||||
ability.addTarget(null);
|
||||
ability.addTarget(new TargetCreaturePermanent(filter));
|
||||
this.addAbility(ability);
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue