PRC8/nwn/nwnprc/trunk/spells/sp_sickn_evil.nss
Jaysyn904 6ec137a24e Updated AMS marker feats
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.
2024-02-11 14:01:05 -05:00

70 lines
2.3 KiB
Plaintext

//::///////////////////////////////////////////////
//:: Name Sicken Evil
//:: FileName sp_sickn_evil.nss
//:://////////////////////////////////////////////
/**@file Sicken Evil
Necromancy [Good]
Level: Sanctified 5
Components: V, S, Sacrifice
Casting Time: 1 standard action
Range: Personal
Area: 20-ft.-radius emanation
Duration: 1 minute/level (D)
Saving Throw: None
Spell Resistance: Yes
You emanate a powerful aura that sickens evil
creatures within the specified area.
Sacrifice: 1d4 points of Strength damage.
<Flaming_Sword> sickened: The character takes a -2
penalty on all attack rolls, saving throws, skill
checks and ability checks.
Author: Tenjac
Created: 6/30/06
*/
//:://////////////////////////////////////////////
//:://////////////////////////////////////////////
#include "prc_inc_spells"
void main()
{
if(!X2PreSpellCastCode()) return;
PRCSetSchool(SPELL_SCHOOL_NECROMANCY);
//Declare major variables including Area of Effect Object
effect eAOE = EffectAreaOfEffect(VFX_PER_SICKEN_EVIL);
object oPC = OBJECT_SELF;
object oTarget = PRCGetSpellTargetObject();
object oItemTarget = oTarget;
int nCasterLvl = PRCGetCasterLevel(oPC);
int nMetaMagic = PRCGetMetaMagicFeat();
float fDuration = (nCasterLvl * 600.0f);
//Check Extend metamagic feat.
if (CheckMetaMagic(nMetaMagic, METAMAGIC_EXTEND))
{
fDuration = fDuration *2; //Duration is +100%
}
//VFX
effect eVis = EffectVisualEffect(VFX_DUR_PROTECTION_GOOD_MINOR);
SPApplyEffectToObject(DURATION_TYPE_TEMPORARY, eVis, oPC, fDuration);
//Create an instance of the AOE Object using the Apply Effect function
SPApplyEffectToObject(DURATION_TYPE_TEMPORARY, eAOE, oPC, fDuration);
object oAoE = GetAreaOfEffectObject(GetLocation(oPC), "VFX_PER_SICKEN_EVIL");
SetAllAoEInts(SPELL_SICKEN_EVIL, oAoE, 20, 0, nCasterLvl);
//Sanctified spells get mandatory 10 pt good adjustment, regardless of switch
AdjustAlignment(oPC, ALIGNMENT_GOOD, 10, FALSE);
//SPGoodShift(oPC);
DelayCommand(fDuration, DoCorruptionCost(oPC, ABILITY_STRENGTH, d4(), 0));
PRCSetSchool();
}