mirror of
https://github.com/correl/mage.git
synced 2024-12-26 03:00:11 +00:00
Fix misspellings of "Equipped"
This commit is contained in:
parent
0abfbd66e1
commit
71a12993be
6 changed files with 31 additions and 31 deletions
|
@ -47,7 +47,7 @@ public class AttacksIfAbleAttachedEffect extends RequirementEffect {
|
||||||
if (attachmentType.equals(AttachmentType.AURA)) {
|
if (attachmentType.equals(AttachmentType.AURA)) {
|
||||||
this.staticText = "Enchanted creature attacks each turn if able";
|
this.staticText = "Enchanted creature attacks each turn if able";
|
||||||
} else {
|
} else {
|
||||||
this.staticText = "Equiped creature attacks each turn if able";
|
this.staticText = "Equipped creature attacks each turn if able";
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -47,7 +47,7 @@ public class BlocksIfAbleAttachedEffect extends RequirementEffect {
|
||||||
if (attachmentType.equals(AttachmentType.AURA)) {
|
if (attachmentType.equals(AttachmentType.AURA)) {
|
||||||
this.staticText = "Enchanted creature blocks each turn if able";
|
this.staticText = "Enchanted creature blocks each turn if able";
|
||||||
} else {
|
} else {
|
||||||
this.staticText = "Equiped creature blocks each turn if able";
|
this.staticText = "Equipped creature blocks each turn if able";
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -47,7 +47,7 @@ public class CantAttackAttachedEffect extends RestrictionEffect {
|
||||||
if (attachmentType.equals(AttachmentType.AURA)) {
|
if (attachmentType.equals(AttachmentType.AURA)) {
|
||||||
this.staticText = "Enchanted creature can't attack";
|
this.staticText = "Enchanted creature can't attack";
|
||||||
} else {
|
} else {
|
||||||
this.staticText = "Equiped creature can't attack";
|
this.staticText = "Equipped creature can't attack";
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -45,7 +45,7 @@ public class CantAttackBlockAttachedEffect extends RestrictionEffect {
|
||||||
if (attachmentType.equals(AttachmentType.AURA)) {
|
if (attachmentType.equals(AttachmentType.AURA)) {
|
||||||
this.staticText = "Enchanted creature can't attack or block";
|
this.staticText = "Enchanted creature can't attack or block";
|
||||||
} else {
|
} else {
|
||||||
this.staticText = "Equiped creature can't attack or block";
|
this.staticText = "Equipped creature can't attack or block";
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -49,7 +49,7 @@ public class CantAttackControllerAttachedEffect extends RestrictionEffect {
|
||||||
if (attachmentType.equals(AttachmentType.AURA)) {
|
if (attachmentType.equals(AttachmentType.AURA)) {
|
||||||
this.staticText = "Enchanted creature can't attack you or a planeswalker you control";
|
this.staticText = "Enchanted creature can't attack you or a planeswalker you control";
|
||||||
} else {
|
} else {
|
||||||
this.staticText = "Equiped creature can't attack you or a planeswalker you control";
|
this.staticText = "Equipped creature can't attack you or a planeswalker you control";
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -50,7 +50,7 @@ public class CantBlockAttachedEffect extends RestrictionEffect {
|
||||||
if (attachmentType.equals(AttachmentType.AURA)) {
|
if (attachmentType.equals(AttachmentType.AURA)) {
|
||||||
sb.append("Enchanted creature can't block");
|
sb.append("Enchanted creature can't block");
|
||||||
} else {
|
} else {
|
||||||
sb.append("Equiped creature can't block");
|
sb.append("Equipped creature can't block");
|
||||||
}
|
}
|
||||||
if (!duration.toString().isEmpty()) {
|
if (!duration.toString().isEmpty()) {
|
||||||
sb.append(" ").append(duration.toString());
|
sb.append(" ").append(duration.toString());
|
||||||
|
|
Loading…
Reference in a new issue