PRC8/nwn/nwnprc/trunk/scripts/prc_blight_touch.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

33 lines
941 B
Plaintext

/*
Talonas Blight.
*/
const int DISEASE_TALONAS_BLIGHT = 52;
#include "prc_alterations"
#include "prc_inc_spells"
void main()
{
object oPC = OBJECT_SELF;
object oTarget = PRCGetSpellTargetObject();
int iDC = GetLevelByClass(CLASS_TYPE_BLIGHTLORD) + GetAbilityModifier(ABILITY_WISDOM, oPC) + 10;
effect eDisease = EffectDisease(DISEASE_TALONAS_BLIGHT);
int iPenalty = d4(1);
if (TouchAttackMelee(oTarget) > 0)
{
//Make a saving throw check
if(!PRCMySavingThrow(SAVING_THROW_FORT, oTarget, iDC, SAVING_THROW_TYPE_SPELL))
{
SetLocalInt(oTarget, "BlightDC", iDC);
SetLocalObject(oTarget, "BlightspawnCreator", oPC);
//The effect is permament because the disease subsystem has its own internal resolution
//system in place.
SPApplyEffectToObject(DURATION_TYPE_PERMANENT, eDisease, oTarget,0.0f,TRUE,-1,iDC);
}
}
}