Simulacrum, and skeletons are useless unless you can animate them or know Bone Shards.
git-svn-id: https://crawl-ref.svn.sourceforge.net/svnroot/crawl-ref/trunk@8046 c06c8d41-db1a-0410-9941-cceddc491573
2IK5TBPTDZLN7XTSPNRAC2HQ726L2VXFTLUU2NEZI2PXNUOABFTQC
if (you.has_spell(SPELL_SUBLIMATION_OF_BLOOD)
|| you.has_spell(SPELL_SIMULACRUM))
{
return (false);
}
return (true);
case OBJ_CORPSES:
if (item.sub_type != CORPSE_SKELETON)
return (false);
if (you.has_spell(SPELL_BONE_SHARDS)
|| you.has_spell(SPELL_ANIMATE_DEAD)
|| you.has_spell(SPELL_ANIMATE_SKELETON)
|| you.mutation[MUT_RAISE_DEAD]
|| you.religion == GOD_YREDELEMNUL
&& you.piety >= piety_breakpoint(0))
{
return (false);
}
return (true);