git-svn-id: https://crawl-ref.svn.sourceforge.net/svnroot/crawl-ref/trunk@1584 c06c8d41-db1a-0410-9941-cceddc491573
EB2ECXZ3EQ6L2ZY42KLQV4QPE4YCNYENXFGUM7EDTCWC2LDZJYCAC
const int gourmand = you.duration[DUR_GOURMAND];
if (gourmand >= GOURMAND_MAX)
phrase =
one_chance_in(8)? "tastes like chicken!"
: "tastes great.";
else if (gourmand > GOURMAND_MAX * 75 / 100)
phrase = "tastes very good.";
else if (gourmand > GOURMAND_MAX * 50 / 100)
phrase = "tastes good.";
else if (gourmand > GOURMAND_MAX * 25 / 100)
phrase = "is not very appetising.";
if (!likes_chunks)
{
const int gourmand = you.duration[DUR_GOURMAND];
if (gourmand >= GOURMAND_MAX)
phrase =
one_chance_in(1000)? "tastes like chicken!"
: "tastes great.";
else if (gourmand > GOURMAND_MAX * 75 / 100)
phrase = "tastes very good.";
else if (gourmand > GOURMAND_MAX * 50 / 100)
phrase = "tastes good.";
else if (gourmand > GOURMAND_MAX * 25 / 100)
phrase = "is not very appetising.";
}