I can stop refactoring ConditionalInterveningIfTriggeredAbility whenever I want

This commit is contained in:
theelk801 2025-06-11 09:58:16 -04:00
parent 15d4ca2edc
commit 9fb082d656
61 changed files with 590 additions and 770 deletions

View file

@ -7,6 +7,7 @@ import mage.constants.ComparisonType;
import mage.constants.SubType;
import mage.game.Game;
import mage.game.permanent.Permanent;
import mage.util.CardUtil;
import java.util.UUID;
@ -50,6 +51,6 @@ public class EnchantedSourceCondition implements Condition {
@Override
public String toString() {
return "{this} is enchanted";
return "{this} is enchanted" + (numberOfEnchantments > 1 ? " by " + CardUtil.numberToText(numberOfEnchantments) + " or more Auras" : "");
}
}