forked from External/mage
- Refactored BlocksTriggeredAbility to BlocksSourceTriggeredAbility
This commit is contained in:
parent
12c50420bf
commit
3b90c48c75
46 changed files with 157 additions and 90 deletions
|
|
@ -1,7 +1,7 @@
|
|||
package mage.game.permanent.token;
|
||||
|
||||
import mage.MageInt;
|
||||
import mage.abilities.common.BlocksTriggeredAbility;
|
||||
import mage.abilities.common.BlocksSourceTriggeredAbility;
|
||||
import mage.abilities.effects.common.DontUntapInControllersNextUntapStepTargetEffect;
|
||||
import mage.constants.CardType;
|
||||
import mage.constants.SubType;
|
||||
|
|
@ -20,7 +20,7 @@ public final class MesmerizingBenthidToken extends TokenImpl {
|
|||
subtype.add(SubType.ILLUSION);
|
||||
power = new MageInt(0);
|
||||
toughness = new MageInt(2);
|
||||
this.addAbility(new BlocksTriggeredAbility(
|
||||
this.addAbility(new BlocksSourceTriggeredAbility(
|
||||
new DontUntapInControllersNextUntapStepTargetEffect("that creature"),
|
||||
false, true
|
||||
));
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue