Updated AMS marker feats. Removed arcane & divine marker feats. Updated Dread Necromancer for epic progression. Updated weapon baseitem models. Updated new weapons for crafting & npc equip. Updated prefix. Updated release archive.
22 lines
481 B
Plaintext
22 lines
481 B
Plaintext
//::///////////////////////////////////////////////
|
|
//:: True Necomancer Energy Drain
|
|
//:: PRC_TN_EnDrain.nss
|
|
//:://////////////////////////////////////////////
|
|
/*
|
|
Target loses 2d4 levels.
|
|
Undead gain 2d4x5 HP for one hour.
|
|
*/
|
|
//:://////////////////////////////////////////////
|
|
//:: Created By: Stratovarius
|
|
//:: Created On: Mar 4, 2004
|
|
//:://////////////////////////////////////////////
|
|
|
|
#include "prc_inc_template"
|
|
|
|
void main()
|
|
{
|
|
DoRacialSLA(SPELL_ENERGY_DRAIN);
|
|
}
|
|
|
|
|