priest corpses, 50% for orc high priest corpses, and 70% for Saint Roka's orc corpse. (For reference, the odds of gaining piety for killing a heretic priest under Beogh are 70%.)
git-svn-id: https://crawl-ref.svn.sourceforge.net/svnroot/crawl-ref/trunk@8939 c06c8d41-db1a-0410-9941-cceddc491573
DQ66I7TXDJ3RLFVX7YOVGSVLCSVHEJJ6O5B6XGEHHO2ION3N6IQAC
if (item_orig == MONS_SAINT_ROKA
|| (item_orig == MONS_ORC_HIGH_PRIEST && !one_chance_in(4))
|| (item_orig == MONS_ORC_PRIEST && coinflip())
|| one_chance_in(4))
if ((item_orig == MONS_SAINT_ROKA && x_chance_in_y(7, 10))
|| (item_orig == MONS_ORC_HIGH_PRIEST && coinflip())
|| (item_orig == MONS_ORC_PRIEST && x_chance_in_y(3, 10))
|| one_chance_in(10))