fixed a verify failure

This commit is contained in:
Evan Kranzler 2022-03-01 19:51:42 -05:00
parent 5e1e69bdfd
commit 505b32aac5

View file

@ -28,9 +28,9 @@ public final class Graxiplon extends CardImpl {
this.power = new MageInt(3);
this.toughness = new MageInt(4);
// Graxiplon cant 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(
new CantBeBlockedSourceEffect(), GraxiplonCondition.instance, "{this} cant be blocked " +
new CantBeBlockedSourceEffect(), GraxiplonCondition.instance, "{this} can't be blocked " +
"unless defending player controls three or more creatures that share a creature type"
)));
}