diff --git a/Mage.Sets/src/mage/cards/a/AgathasChampion.java b/Mage.Sets/src/mage/cards/a/AgathasChampion.java
index 9768d94e2cc..dd85a3e36f5 100644
--- a/Mage.Sets/src/mage/cards/a/AgathasChampion.java
+++ b/Mage.Sets/src/mage/cards/a/AgathasChampion.java
@@ -42,7 +42,8 @@ public final class AgathasChampion extends CardImpl {
this.addAbility(new ConditionalInterveningIfTriggeredAbility(
trigger,
BargainedCondition.instance,
- "When {this} enters the battlefield, if it was bargained, it fights up to one target creature you don't control."
+ "When {this} enters the battlefield, if it was bargained, it fights up to one target creature you don't control." +
+ " (Each deals damage equal to its power to the other.)"
));
}
diff --git a/Mage.Sets/src/mage/cards/b/BelligerentOfTheBall.java b/Mage.Sets/src/mage/cards/b/BelligerentOfTheBall.java
index 4ad762c2cd3..ef30fa1a307 100644
--- a/Mage.Sets/src/mage/cards/b/BelligerentOfTheBall.java
+++ b/Mage.Sets/src/mage/cards/b/BelligerentOfTheBall.java
@@ -41,6 +41,7 @@ public final class BelligerentOfTheBall extends CardImpl {
CelebrationCondition.instance, "At the beginning of combat on your turn, if two or more nonland "
+ "permanents entered the battlefield under your control this turn, target creature you control "
+ "gets +1/+0 and gains menace until end of turn."
+ + " (It can't be blocked except by two or more creatures.)"
);
ability.addEffect(new GainAbilityTargetEffect(new MenaceAbility(false)));
ability.addTarget(new TargetControlledCreaturePermanent());
diff --git a/Mage.Verify/src/test/java/mage/verify/VerifyCardDataTest.java b/Mage.Verify/src/test/java/mage/verify/VerifyCardDataTest.java
index 4ea61f6c37b..29ad9c6d915 100644
--- a/Mage.Verify/src/test/java/mage/verify/VerifyCardDataTest.java
+++ b/Mage.Verify/src/test/java/mage/verify/VerifyCardDataTest.java
@@ -2034,17 +2034,17 @@ public class VerifyCardDataTest {
// special check: missing or wrong ability/effect hints
Map hints = new HashMap<>();
- hints.put(FightTargetsEffect.class, "each deals damage equal to its power to the other");
+ hints.put(FightTargetsEffect.class, "Each deals damage equal to its power to the other");
hints.put(MenaceAbility.class, "can't be blocked except by two or more");
- hints.put(ScryEffect.class, "look at the top card of your library. You may put that card on the bottom of your library");
- hints.put(EquipAbility.class, "equip only as a sorcery.");
+ hints.put(ScryEffect.class, "Look at the top card of your library. You may put that card on the bottom of your library");
+ hints.put(EquipAbility.class, "Equip only as a sorcery.");
hints.put(WardAbility.class, "becomes the target of a spell or ability an opponent controls");
- hints.put(ProliferateEffect.class, "choose any number of permanents and/or players, then give each another counter of each kind already there.");
+ hints.put(ProliferateEffect.class, "Choose any number of permanents and/or players, then give each another counter of each kind already there.");
for (Class objectClass : hints.keySet()) {
String objectHint = hints.get(objectClass);
// ability/effect must have description or not
- boolean needHint = refLowerText.contains(objectHint);
+ boolean needHint = ref.text.contains(objectHint);
boolean haveHint = card.getRules().stream().anyMatch(rule -> rule.contains(objectHint));
if (needHint != haveHint) {
warn(card, "card have " + objectClass.getSimpleName() + " but hint is wrong (it must be " + (needHint ? "enabled" : "disabled") + ")");