value retruned by mons_rarity().
git-svn-id: https://crawl-ref.svn.sourceforge.net/svnroot/crawl-ref/trunk@5917 c06c8d41-db1a-0410-9941-cceddc491573
N7ENWG2PDEPKHRZVSMF3JDUN3J5WY467U3YPXRQ44VI2OGJFDHCQC MDFQRJ6QZNFUBVSFWLXUJ6EBXOU47T3CVDI2XKBGNNRF4DXDKESQC 74LQ7JXVLAFSHLI7LCBKFX47CNTYSKGUQSXNX5FCIUIGCC2JTR3QC RPOZZWKG5GLPHVZZ7ZKMKS64ZMV2LDCQSARBJFJ6FZOTOKCQO7FAC K2CS6TCX2NDVL2ASEHGP4J4K4IJ6FP3ANNKTSIWVG43HPYSBX6ZQC LFBNFE3PZBXTR2ROPKYPARUWLJAYWAKGTS7VBWADZWVVSJ5CLX6AC QUFPPRIIRXHUFEDH3EFES7CSHTA7GG2DAXTRHUAUQBYMSWK4BP6AC CH7JECYYH35H4TRHRNRTRJCQTQLZ2WRH62TKV72SUIU2RTK5OH7AC 7V4DCKFJCNBXFODMKJ6H3MCDUTSD4XVQ7D4D6XFCD4JNF4HCE4KAC CYAVI4PYWMMKTPYT5N2B3MI4OSHZFLPKOZFSLFJUXRYAACYXWW3AC EHSY6DVGUMI6C67WKET3GDJVLWJWGYBYQONNDK5JVT7BCTHBEZVAC RVST2QHYJ757ZHK4AUJ5NGPDZ44AD6RVFVXYPKQIBJXZBDNUCHXQC else if (you.where_are_you == BRANCH_MAIN_DUNGEON&& you.level_type == LEVEL_DUNGEON&& mons_level(monster->type) >= you.your_level + _ood_limit()&& mons_level(monster->type) < 99&& !(monster->type >= MONS_EARTH_ELEMENTAL&& monster->type <= MONS_AIR_ELEMENTAL)&& !mons_class_flag( monster->type, M_NO_EXP_GAIN )){interesting = true;}else if ((you.level_type == LEVEL_DUNGEON ||you.level_type == LEVEL_ABYSS)&& mons_rarity(monster->type) <= Options.rare_interesting&& mons_rarity(monster->type) > 0){interesting = true;}
else if (you.where_are_you == BRANCH_MAIN_DUNGEON&& you.level_type == LEVEL_DUNGEON&& mons_level(monster->type) >= you.your_level + _ood_limit()&& mons_level(monster->type) < 99&& !(monster->type >= MONS_EARTH_ELEMENTAL&& monster->type <= MONS_AIR_ELEMENTAL)&& !mons_class_flag( monster->type, M_NO_EXP_GAIN )){interesting = true;}
else if (key == "ood_interesting"){ood_interesting = atoi( field.c_str() );}
INT_OPTION(ood_interesting, 0, 500);INT_OPTION(rare_interesting, 0, 99);