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.
40 lines
1.0 KiB
Plaintext
40 lines
1.0 KiB
Plaintext
//::///////////////////////////////////////////////
|
|
//:: Name Vile Death
|
|
//:: FileName sp_vile_death.nss
|
|
//:://////////////////////////////////////////////
|
|
/** @file Vile Death
|
|
Conjuration (Calling) [Evil]
|
|
Level: Clr 9, Dn 7, Wiz 9
|
|
Components: V, S, M
|
|
Casting Time: 1 standard action
|
|
Range: Touch
|
|
Targets: One undead creature
|
|
Duration: Permanent
|
|
|
|
The target undead creature gains the Fiendish template.
|
|
|
|
Author: Stratovarius
|
|
Created: 5/17/09
|
|
*/
|
|
//:://////////////////////////////////////////////
|
|
//:://////////////////////////////////////////////
|
|
|
|
#include "prc_inc_spells"
|
|
#include "prc_inc_template"
|
|
|
|
void main()
|
|
{
|
|
if(!X2PreSpellCastCode()) return;
|
|
|
|
PRCSetSchool(SPELL_SCHOOL_NECROMANCY);
|
|
|
|
object oPC = OBJECT_SELF;
|
|
object oTarget = PRCGetSpellTargetObject();
|
|
|
|
if(MyPRCGetRacialType(oTarget) == RACIAL_TYPE_UNDEAD)
|
|
{
|
|
SPApplyEffectToObject(DURATION_TYPE_INSTANT, EffectVisualEffect(VFX_FNF_BLASPHEMY), oTarget);
|
|
ApplyTemplateToObject(TEMPLATE_FIENDISH, oTarget);
|
|
}
|
|
PRCSetSchool();
|
|
} |