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.
This commit is contained in:
Jaysyn904
2023-08-22 10:00:21 -04:00
parent 3acda03f30
commit 5914ed2ab5
22853 changed files with 57524 additions and 47307 deletions

View File

@@ -0,0 +1,29 @@
//::///////////////////////////////////////////////
//:: [Mass Charm]
//:: [NW_S0_MsCharm.nss]
//:: Copyright (c) 2000 Bioware Corp.
//:://////////////////////////////////////////////
/*
The caster attempts to charm a group of individuals
who's HD can be no more than his level combined.
The spell starts checking the area and those that
fail a will save are charmed. The affected persons
are Charmed for 1 round per 2 caster levels.
*/
//:://////////////////////////////////////////////
//:: Created By: Preston Watamaniuk
//:: Created On: Jan 29, 2001
//:://////////////////////////////////////////////
//:: Last Updated By: Preston Watamaniuk, On: April 10, 2001
//:: VFX Pass By: Preston W, On: June 22, 2001
//:: modified by mr_bumpkin Dec 4, 2003 for PRC stuff
#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_MASS_CHARM, nLevel, nDC);
}