mirror of
https://github.com/correl/mage.git
synced 2024-11-15 11:09:30 +00:00
fixed a verify failure
This commit is contained in:
parent
5e1e69bdfd
commit
505b32aac5
1 changed files with 2 additions and 2 deletions
|
@ -28,9 +28,9 @@ public final class Graxiplon extends CardImpl {
|
||||||
this.power = new MageInt(3);
|
this.power = new MageInt(3);
|
||||||
this.toughness = new MageInt(4);
|
this.toughness = new MageInt(4);
|
||||||
|
|
||||||
// Graxiplon can’t be blocked unless defending player controls three or more creatures that share a creature type.
|
// Graxiplon can't be blocked unless defending player controls three or more creatures that share a creature type.
|
||||||
this.addAbility(new SimpleStaticAbility(new ConditionalRestrictionEffect(
|
this.addAbility(new SimpleStaticAbility(new ConditionalRestrictionEffect(
|
||||||
new CantBeBlockedSourceEffect(), GraxiplonCondition.instance, "{this} can’t be blocked " +
|
new CantBeBlockedSourceEffect(), GraxiplonCondition.instance, "{this} can't be blocked " +
|
||||||
"unless defending player controls three or more creatures that share a creature type"
|
"unless defending player controls three or more creatures that share a creature type"
|
||||||
)));
|
)));
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue