git-svn-id: https://crawl-ref.svn.sourceforge.net/svnroot/crawl-ref/trunk@4865 c06c8d41-db1a-0410-9941-cceddc491573
YIRNX4FVAMPDL4AAZAHBT45GV32IWCN7NYUNL2ZN34VSFVPQARAAC
speed = (one_chance_in(3) ? 10 : 8 + roll_dice(2, 9));
// Don't make greased-lightning Pandemonium demons in the dungeon (max
// speed = 17). Demons in Pandemonium can be up to speed 24.
if (you.level_type == LEVEL_DUNGEON)
speed = (one_chance_in(3)? 10 : 7 + roll_dice(2, 5));
else
speed = (one_chance_in(3) ? 10 : 10 + roll_dice(2, 7));