mirror of
https://github.com/correl/mage.git
synced 2025-01-13 19:11:33 +00:00
Fix verify failure
This commit is contained in:
parent
6077deb1a3
commit
6dd898a83c
1 changed files with 2 additions and 2 deletions
|
@ -41,9 +41,9 @@ public final class CloakOfInvisibility extends CardImpl {
|
||||||
// Enchanted creature has phasing and can't be blocked except by Walls.
|
// 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 = new SimpleStaticAbility(Zone.BATTLEFIELD, new GainAbilityAttachedEffect(PhasingAbility.getInstance(), AttachmentType.AURA).setText("Enchanted creature has phasing "));
|
||||||
ability.addEffect(new CantBeBlockedByCreaturesAttachedEffect(Duration.WhileOnBattlefield, filter, AttachmentType.AURA)
|
ability.addEffect(new CantBeBlockedByCreaturesAttachedEffect(Duration.WhileOnBattlefield, filter, AttachmentType.AURA)
|
||||||
.setText("and can’t 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. " +
|
"<i>(It phases in or out before its controller untaps during each of their untap steps. " +
|
||||||
"While it’s phased out, it’s treated as though it doesn’t exist.)</i>"));
|
"While it's phased out, it's treated as though it doesn't exist.)</i>"));
|
||||||
this.addAbility(ability);
|
this.addAbility(ability);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue