UW2_PRC8/_haks/poa_exp_spells/sp_curimpbl.nss

41 lines
1.5 KiB
Plaintext
Raw Normal View History

/////////////////////////////////////////////////////////////////////
//
// Curse of Impending Blades - Target receives a -2 to AC penalty.
//
/////////////////////////////////////////////////////////////////////
#include "prc_inc_spells"
void main()
{
// If code within the PreSpellCastHook (i.e. UMD) reports FALSE, do not run this spell
if (!X2PreSpellCastCode()) return;
PRCSetSchool(SPELL_SCHOOL_NECROMANCY);
int nCasterLvl = PRCGetCasterLevel(OBJECT_SELF);
object oTarget = PRCGetSpellTargetObject();
if(spellsIsTarget(oTarget, SPELL_TARGET_STANDARDHOSTILE, OBJECT_SELF))
{
// Get the target and raise the spell cast event.
PRCSignalSpellEvent(oTarget);
// Determine the spell's duration, taking metamagic feats into account.
float fDuration = PRCGetMetaMagicDuration(MinutesToSeconds(PRCGetCasterLevel()));
// Determine the save bonus.
int nBonus = 2 + (nCasterLvl / 6);
if (nBonus > 20) nBonus = 20;
// Apply the curse and vfx.
effect eCurse = EffectACDecrease(2);
eCurse = EffectLinkEffects(eCurse, EffectVisualEffect(VFX_DUR_CESSATE_NEGATIVE));
eCurse = EffectLinkEffects(eCurse, EffectVisualEffect(VFX_DUR_PROTECTION_EVIL_MINOR));
SPApplyEffectToObject(DURATION_TYPE_TEMPORARY, eCurse, oTarget, fDuration,TRUE,-1,nCasterLvl);
SPApplyEffectToObject(DURATION_TYPE_INSTANT, EffectVisualEffect(VFX_IMP_REDUCE_ABILITY_SCORE), oTarget);
}
PRCSetSchool();
}