mirror of
https://github.com/magefree/mage.git
synced 2025-12-25 13:02:06 -08:00
- Fixed #8707
This commit is contained in:
parent
5ecebcf040
commit
cf2b6f8366
1 changed files with 6 additions and 3 deletions
|
|
@ -13,12 +13,14 @@ import mage.game.permanent.Permanent;
|
|||
* <p>
|
||||
* 702.13a Intimidate is an evasion ability.
|
||||
* <p>
|
||||
* 702.13b A creature with intimidate can't be blocked except by artifact creatures
|
||||
* and/or creatures that share a color with it. (See rule 509, "Declare Blockers Step.") #
|
||||
* 702.13b A creature with intimidate can't be blocked except by artifact
|
||||
* creatures and/or creatures that share a color with it. (See rule 509,
|
||||
* "Declare Blockers Step.") #
|
||||
* <p>
|
||||
* 702.13c Multiple instances of intimidate on the same creature are redundant.
|
||||
*/
|
||||
public class IntimidateAbility extends EvasionAbility implements MageSingleton {
|
||||
|
||||
private static final IntimidateAbility instance = new IntimidateAbility();
|
||||
|
||||
public static IntimidateAbility getInstance() {
|
||||
|
|
@ -31,7 +33,7 @@ public class IntimidateAbility extends EvasionAbility implements MageSingleton {
|
|||
|
||||
@Override
|
||||
public String getRule() {
|
||||
return "intimidate";
|
||||
return "Intimidate (This creature can't be blocked except by artifact creatures and/or creatures that share a color with it.)";
|
||||
}
|
||||
|
||||
@Override
|
||||
|
|
@ -41,6 +43,7 @@ public class IntimidateAbility extends EvasionAbility implements MageSingleton {
|
|||
}
|
||||
|
||||
class IntimidateEffect extends RestrictionEffect implements MageSingleton {
|
||||
|
||||
public IntimidateEffect() {
|
||||
super(Duration.EndOfGame);
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue