Fixed 3 cards

This commit is contained in:
Galatolol 2017-01-01 12:11:11 +01:00
parent f577a4b614
commit 2db6ff1825
3 changed files with 8 additions and 4 deletions

View file

@ -45,7 +45,7 @@ import mage.game.permanent.Permanent;
public class CantAttackUnlessPaysAttachedEffect extends PayCostToAttackBlockEffectImpl {
public CantAttackUnlessPaysAttachedEffect(ManaCosts manaCosts, AttachmentType attachmentType) {
super(Duration.WhileOnBattlefield, Outcome.Detriment, RestrictType.ATTACK_AND_BLOCK, manaCosts);
super(Duration.WhileOnBattlefield, Outcome.Detriment, RestrictType.ATTACK, manaCosts);
staticText = (attachmentType.equals(AttachmentType.AURA) ? "Enchanted " : "Equipped ")
+ "creature can't attack unless its controller pays "
+ (manaCosts == null ? "" : manaCosts.getText());