@@ -479,7 +479,7 @@ class ItemInfoMode(Choice):
479479 """
480480 For Full, all treasure and store icons on the map will display if they are progression, useful, or filler items.
481481
482- For Earned, all treasure and store icons on the map will display as mimics until you complete 50% of your checks.
482+ For Earned, all treasure and store icons on the map will display as mimics until you complete 50% (configurable below) of your checks.
483483
484484 For Obscured, all treasure and store icons on the map will display as mimics permanently.
485485 If you find skipping treasures is distasteful but part of your brain always wants to be efficient, this option is for you!
@@ -491,6 +491,15 @@ class ItemInfoMode(Choice):
491491 option_obscured = 2
492492 default = 0
493493
494+ class EarnedItemInfoPercent (Range ):
495+ """
496+ This is the likelihood that a trap will replace a filler check. A value of 0 means no traps.
497+ """
498+ display_name = "Percent of checks that must be collected to earn info on treasure and store icons."
499+ range_start = 1
500+ range_end = 99
501+ default = 50
502+
494503class RandomizeMusic (Toggle ):
495504 """
496505 When enabled, music will be randomized upon connecting to the AP World. (This toggles the base game's Randomize Music function.)
@@ -563,6 +572,7 @@ class CrystalProjectOptions(PerGameCommonOptions):
563572 include_scholar_abilities : IncludeScholarAbilities
564573 trap_likelihood : TrapLikelihood
565574 item_info_mode : ItemInfoMode
575+ earned_item_info_percent : EarnedItemInfoPercent
566576 randomize_music : RandomizeMusic
567577 use_mods : UseMods
568578
@@ -571,5 +581,5 @@ class CrystalProjectOptions(PerGameCommonOptions):
571581 "Location Options" : [IncludedRegions , JobRando , StartingJobQuantity , DisableSparks , KillBossesMode , Shopsanity , Regionsanity , RegionsanityStarterRegionMinLevel , RegionsanityStarterRegionMaxLevel , HomePointHustle ],
572582 "Progression Options" : [ProgressiveMountMode , StartingLevel , LevelGating , LevelComparedToEnemies , ProgressiveLevelSize , MaxLevel , StartingPassivePoints , MaximumPassivePoints , PassivePointBoostSize , KeyMode , ObscureRoutes , HopToIt , PrioritizeCrystals , AutoSpendLP , AutoEquipPassives , EasyLeveling ],
573583 "Item Pool Options" : [ProgressiveEquipmentMode , StartWithTreasureFinder , StartWithMaps , FillFullMap , IncludeSummonAbilities , IncludeScholarAbilities ],
574- "Bonus Fun" : [ItemInfoMode , RandomizeMusic , UseMods ]
584+ "Bonus Fun" : [ItemInfoMode , EarnedItemInfoPercent , RandomizeMusic , UseMods ]
575585}
0 commit comments