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

28 lines
891 B
Plaintext

//::///////////////////////////////////////////////
//:: [Charm Person]
//:: [NW_S0_CharmPer.nss]
//:: Copyright (c) 2000 Bioware Corp.
//:://////////////////////////////////////////////
//:: Will save or the target is charmed for 1 round
//:: per caster level.
//:://////////////////////////////////////////////
//:: Created By: Preston Watamaniuk
//:: Created On: Jan 29, 2001
//:://////////////////////////////////////////////
//:: Last Updated By: Preston Watamaniuk, On: April 5, 2001
//:: Last Updated By: Preston Watamaniuk, On: April 10, 2001
//:: VFX Pass By: Preston W, On: June 20, 2001
//:: modified by mr_bumpkin Dec 4, 2003
#include "inc_newspellbook"
#include "prc_inc_core"
void main()
{
int nLevel = GetLevelByClass(CLASS_TYPE_DISC_BAALZEBUL);
int nDC = 10 + nLevel + GetAbilityModifier(ABILITY_CHARISMA);
DoRacialSLA(SPELL_CHARM_PERSON, nLevel, nDC);
}