suggestions courtesy of dpeg.
git-svn-id: https://crawl-ref.svn.sourceforge.net/svnroot/crawl-ref/trunk@1967 c06c8d41-db1a-0410-9941-cceddc491573
6A3UHWB2EORRGBKEWCL2SPBH2BGCYRWWPNKCQLGFJHOLEQZLTFLAC
snprintf(info, INFO_SIZE, "%s screams, \"Feel the wrath of %s!\"",
god_name(GOD_BEOGH), god_name(GOD_BEOGH));
god_speaks(GOD_BEOGH, info);
if (you.religion == GOD_BEOGH)
{
switch(random2(3))
{
case 0:
snprintf(info, INFO_SIZE, " fumes, \"This is no small sin, orc. Repent!\"");
break;
case 1:
snprintf(info, INFO_SIZE, " whispers, \"You will pay for this transgression.\"");
break;
default:
snprintf(info, INFO_SIZE, " rages, \"Eye for an eye...\"");
}
simple_god_message(info, GOD_BEOGH);
}
else if (you.species == SP_HILL_ORC)
{
if (coinflip())
simple_god_message("'s voice booms out: \"Heretic, die!\"", GOD_BEOGH);
else
god_speaks(GOD_BEOGH, "You hear Beogh's thundering voice: \"Suffer, infidel!\"");
}
else
{
if (coinflip())
simple_god_message(" is not amused about the destruction of his idols.", GOD_BEOGH);
else
simple_god_message(" seems highly displeased.", GOD_BEOGH);
}