Fix verify failure

This commit is contained in:
Alex Vasile 2022-07-01 20:47:56 -04:00
parent 6077deb1a3
commit 6dd898a83c

View file

@ -41,9 +41,9 @@ public final class CloakOfInvisibility extends CardImpl {
// Enchanted creature has phasing and can't be blocked except by Walls.
ability = new SimpleStaticAbility(Zone.BATTLEFIELD, new GainAbilityAttachedEffect(PhasingAbility.getInstance(), AttachmentType.AURA).setText("Enchanted creature has phasing "));
ability.addEffect(new CantBeBlockedByCreaturesAttachedEffect(Duration.WhileOnBattlefield, filter, AttachmentType.AURA)
.setText("and cant be blocked except by Walls. " +
.setText("and can't be blocked except by Walls. " +
"<i>(It phases in or out before its controller untaps during each of their untap steps. " +
"While its phased out, its treated as though it doesnt exist.)</i>"));
"While it's phased out, it's treated as though it doesn't exist.)</i>"));
this.addAbility(ability);
}