updated Raid text

This commit is contained in:
Evan Kranzler 2020-04-13 18:18:55 -04:00
parent 7073de31bb
commit cae39848b9
27 changed files with 52 additions and 53 deletions

View file

@ -21,6 +21,6 @@ public enum RaidCondition implements Condition {
@Override
public String toString() {
return "if you attacked with a creature this turn";
return "if you attacked this turn";
}
}

View file

@ -19,7 +19,7 @@ import mage.watchers.Watcher;
*
* @author emerald000
*/
public class MeleeAbility extends AttacksTriggeredAbility {
public class MeleeAbility extends AttacksTriggeredAbility {
public MeleeAbility() {
super(new BoostSourceEffect(new MeleeDynamicValue(), new MeleeDynamicValue(), Duration.EndOfTurn), false);
@ -37,7 +37,7 @@ public class MeleeAbility extends AttacksTriggeredAbility {
@Override
public String getRule() {
return "Melee <i>(Whenever this creature attacks, it gets +1/+1 until end of turn for each opponent you attacked with a creature this combat.)</i>";
return "Melee <i>(Whenever this creature attacks, it gets +1/+1 until end of turn for each opponent you attacked this combat.)</i>";
}
}