PRC8/nwn/trunk/scripts/codi_s0_HealCirc.nss
Jaysyn904 5914ed2ab5 Updated Release Archive
Updated Release Archive.  Fixed Mage-killer prereqs.  Removed old LETO & ConvoCC related files.  Added organized spell scroll store.  Fixed Gloura spellbook. Various TLK fixes.  Reorganized Repo.  Removed invalid user folders. Added DocGen back in.
2023-08-22 10:00:21 -04:00

16 lines
444 B
Plaintext

//::///////////////////////////////////////////////
//:: Warpriest
//:: HealingCircle
//:://////////////////////////////////////////////
//:://////////////////////////////////////////////
#include "inc_newspellbook"
void main()
{
int nLevel = GetLevelByClass(CLASS_TYPE_WARPRIEST);
int nDC = GetLevelByClass(CLASS_TYPE_WARPRIEST) + GetAbilityModifier(ABILITY_CHARISMA) + 10;
DoRacialSLA(SPELL_HEALING_CIRCLE, nLevel, nDC);
}