Necromantic magic) and holy wrath (blessed by TSO, whom Trog presumably hates).
Also change the newwave colours of bucklers and large shields to match that of shields rather than mails. It's been this long and I never noticed… whoops!
git-svn-id: https://crawl-ref.svn.sourceforge.net/svnroot/crawl-ref/trunk@3429 c06c8d41-db1a-0410-9941-cceddc491573
MPSRFYQMG5SLUOLALTBWHCD4CLVXV3SS7GSFPVYSG3L2J7RKOCFAC
HDJSYPW6GTSBM43QYCJQBEBDAUWWHFHUR6DC4ILGF6LJVL26CZPAC
L6SQXI6VUPDACCYYJAOHBRDPXMIBLLVVDSRADTEIEPJSZMYRBNRQC
DTO3EUKWHZ5RJNGNCFYXSOVTIPVXPP637F2W7WFGYKJ7JK7VNKNQC
EEZCC5GUYHETFQV4KSZJSJ6BTTWZHKS7RXQ25XQ6ODGKLDD4XFRAC
K2CS6TCX2NDVL2ASEHGP4J4K4IJ6FP3ANNKTSIWVG43HPYSBX6ZQC
P722Q43MJLCJ5NHF6FA27YM7IYP2ZTP6WP373BAVZPODZW4JLJPQC
74LQ7JXVLAFSHLI7LCBKFX47CNTYSKGUQSXNX5FCIUIGCC2JTR3QC
// Trog does not gift the Wrath of Trog, nor
// weapons of pain (work together with Necromantic magic)
// or holy wrath (blessed by TSO, a god hated by Trog)
if (agent == GOD_TROG)
{
int brand = get_weapon_brand(doodad);
if (brand == SPWPN_HOLY_WRATH
|| brand == SPWPN_PAIN
|| is_fixed_artefact(doodad)
&& doodad.special == SPWPN_WRATH_OF_TROG)
{
destroy_item(thing_created, true);
thing_created = NON_ITEM;
continue;
}
}