correct the percentages in the comments.
git-svn-id: https://crawl-ref.svn.sourceforge.net/svnroot/crawl-ref/trunk@7274 c06c8d41-db1a-0410-9941-cceddc491573
YWOHKYO7MHOFSUIKYMJAWP5SMYNLU57WZHOHHOLJJFWBQF6U43MQC
mon = ((temp_rand > 84) ? MONS_ORC_WARRIOR : // 15%
(temp_rand > 69) ? MONS_ORC_KNIGHT : // 14%
(temp_rand > 59) ? MONS_NAGA_WARRIOR : // 9%
(temp_rand > 49) ? MONS_CENTAUR_WARRIOR : // 9%
(temp_rand > 39) ? MONS_STONE_GIANT : // 9%
(temp_rand > 29) ? MONS_FIRE_GIANT : // 9%
(temp_rand > 19) ? MONS_FROST_GIANT : // 9%
(temp_rand > 9) ? MONS_CYCLOPS : // 9%
(temp_rand > 4) ? MONS_HILL_GIANT // 4%
: MONS_TITAN); // 4%
mon = ((temp_rand < 15) ? MONS_ORC_WARRIOR : // 15%
(temp_rand < 30) ? MONS_ORC_KNIGHT : // 15%
(temp_rand < 40) ? MONS_NAGA_WARRIOR : // 10%
(temp_rand < 50) ? MONS_CENTAUR_WARRIOR : // 10%
(temp_rand < 60) ? MONS_STONE_GIANT : // 10%
(temp_rand < 70) ? MONS_FIRE_GIANT : // 10%
(temp_rand < 80) ? MONS_FROST_GIANT : // 10%
(temp_rand < 90) ? MONS_CYCLOPS : // 10%
(temp_rand < 95) ? MONS_HILL_GIANT // 5%
: MONS_TITAN); // 5%