It has fear_paralyze special attack.
bool mattack::fear_paralyze(monster *z)
{
if( z->friendly ) {
return false; // TODO: handle friendly monsters
}
if ( g->u.sees( *z ) && !g->u.has_effect( effect_fearparalyze ) ) {
if (g->u.has_artifact_with(AEP_PSYSHIELD) || (g->u.is_wearing("tinfoil_hat") && one_in(4))) {
add_msg(_("The %s probes your mind, but is rebuffed!"), z->name().c_str());
///\EFFECT_INT decreases chance of being paralyzed by fear attack
} else if ( rng(0, 20) > g->u.get_int() ) {
add_msg( m_bad, _("The terrifying visage of the %s paralyzes you."), z->name().c_str() );
g->u.add_effect( effect_fearparalyze, 5 );
g->u.moves -= 400;
} else
add_msg( _("You manage to avoid staring at the horrendous %s."), z->name().c_str() );
}
return true;
}
"death_drops": "angelic_drops", "//": "Assumed to be important part of the cult, so good loot"
{
"type" : "item_group",
"subtype": "collection",
"comment": "contains cloth for an average zombie, also essence and a high chance of magical loot",
"id": "angelic_drops",
"entries":
[
{ "item": "essence", "prob": 100 },
{ "group": "magic_items", "prob": 25 },
{ "group": "magic_consumables", "prob": 25 },
{ "group": "magic_books", "prob": 50 },
{ "group": "magic_tools", "prob": 75 },
{ "group": "pants", "damage-min": 1, "damage-max": 4 },
{ "group": "shirts", "damage-min": 1, "damage-max": 4 },
{ "group": "shoes", "damage-min": 1, "damage-max": 4 },
{ "group": "jackets", "damage-min": 1, "damage-max": 4, "prob": 20 },
{ "group": "bags", "damage-min": 1, "damage-max": 4, "prob": 6 }
]
},
[
{
"type" : "item_group",
"id" : "magic_items",
"items":[
["thunder_sigil", 5],
["bloodscourge", 5],
["bloodaxe", 15],
["spear_pestilence", 10],
["sun_sword", 10],
["ethereal_crossbow", 5],
["gilded_aegis", 10],
["armor_wyrm", 10],
["robe_shadow", 5],
["somen_clairvoyance", 5],
["revenant_crown", 10],
["gauntlets_necro", 15]
]
},{
"type" : "item_group",
"id" : "magic_consumables",
"items":[
["numbness_potion", 25],
["strength_potion", 20],
["speed_potion", 15],
["healing_potion", 10],
["scroll_sun", 5],
["scroll_moon", 5],
["scroll_artiface", 5],
["scroll_nature", 5],
["scroll_destruction", 5],
["scroll_subversion", 5],
["summon_kreck", 4],
["summon_blank", 4],
["summon_flaming_eye", 3],
["summon_hunting_horror", 3],
["summon_flying_polyp", 2],
["summon_mi_go", 2],
["summon_yugg", 1],
["summon_shoggoth", 1]
]
},{
"type" : "item_group",
"id" : "magic_tools",
"items":[
["offering_chalice", 25],
["offering_chalice_used", 30],
["blood_athame", 20],
["hexenhammer", 10],
["silver_glyph", 5],
["essence_dull", 5],
["essence_blood", 10]
]
},{
"type" : "item_group",
"id" : "magic_books",
"items":[
["book_magicfordummies", 5],
["book_potioncraft", 10],
["book_scrollcraft", 10],
["book_hexenhammer", 5],
["book_sacrifice", 10],
["book_bloodmagic", 10],
["book_summoning", 5]
]
}