diff --git a/core/src/main/assets/messages/misc/misc.properties b/core/src/main/assets/messages/misc/misc.properties index b577ba1a5..a254fee9d 100644 --- a/core/src/main/assets/messages/misc/misc.properties +++ b/core/src/main/assets/messages/misc/misc.properties @@ -179,7 +179,7 @@ badges$badge.catalog_one_equipment.desc=Fill in one catalog entry for every type badges$badge.catalog_potions_scrolls.title=Fully Stocked badges$badge.catalog_potions_scrolls.desc=Identify every regular potion and scroll in one run badges$badge.all_rare_enemies.title=Big Game Hunter -badges$badge.all_rare_enemies.desc=Fill in all catalog entries for rare enemies in your journal +badges$badge.all_rare_enemies.desc=Fill in ten catalog entries for rare enemies in your journal badges$badge.rodney.title=Not So Intimidating Now badges$badge.rodney.desc=Learn the true name of the King of Dwarves diff --git a/core/src/main/java/com/shatteredpixel/shatteredpixeldungeon/Badges.java b/core/src/main/java/com/shatteredpixel/shatteredpixeldungeon/Badges.java index de46195b6..2b0797a45 100644 --- a/core/src/main/java/com/shatteredpixel/shatteredpixeldungeon/Badges.java +++ b/core/src/main/java/com/shatteredpixel/shatteredpixeldungeon/Badges.java @@ -154,7 +154,7 @@ public class Badges { BOSS_SLAIN_4 ( 78 ), ALL_RINGS_IDENTIFIED , //still exists internally for pre-2.5 saves ALL_ARTIFACTS_IDENTIFIED , //still exists internally for pre-2.5 saves - ALL_RARE_ENEMIES ( 79, BadgeType.JOURNAL ), + ALL_RARE_ENEMIES ( 79, BadgeType.JOURNAL ), //no longer all, just 10 as of v3.1 DEATH_FROM_GRIM_TRAP ( 80 ), //also disintegration traps VICTORY ( 81 ), BOSS_CHALLENGE_1 ( 82 ), @@ -684,7 +684,7 @@ public class Badges { displayBadge(Badge.CATALOG_POTIONS_SCROLLS); } - if (Bestiary.RARE.totalEntities() == Bestiary.RARE.totalSeen()){ + if (Bestiary.RARE.totalSeen() >= 10){ displayBadge(Badge.ALL_RARE_ENEMIES); }