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

21 lines
752 B
Plaintext

//::///////////////////////////////////////////////
//:: codi_pre_slow
//:://////////////////////////////////////////////
/*
Ocular Adept - Slow
*/
//:://////////////////////////////////////////////
//:: Created By: James Stoneburner
//:: Created On: 2003-11-30
//:://////////////////////////////////////////////
#include "prc_inc_sp_tch"
void main()
{
int nLevel = GetLevelByClass(CLASS_TYPE_OCULAR);
if (DEBUG) FloatingTextStringOnCreature("Your Ocular Adept class level is: " + IntToString(nLevel), OBJECT_SELF);
int nDC = 10 + (nLevel/2) + GetAbilityModifier(ABILITY_CHARISMA);
if (DEBUG) FloatingTextStringOnCreature("Your Ocular Adept DC is: " + IntToString(nDC), OBJECT_SELF);
DoSpellRay(SPELL_SLOW, nLevel, nDC);
}