Updated for updated PRC8 functions

Updated for updated PRC8 functions.  Full compile.  Updated spell & ability haks. Updated release archive.
This commit is contained in:
Jaysyn904
2025-02-10 08:51:10 -05:00
parent ce72b8d120
commit 855e99b13b
188 changed files with 335 additions and 335 deletions

View File

@@ -95,11 +95,11 @@ void main()
if(GetAlignmentGoodEvil(oTarget) == ALIGNMENT_EVIL)
{
//Damage = 2d6/level
nDam = d6(min(60, (2 * nCasterLvl)));
nDam = d6(PRCMin(60, (2 * nCasterLvl)));
if(nMetaMagic & METAMAGIC_MAXIMIZE)
{
nDam = 6 * (min(60, (2 * nCasterLvl)));
nDam = 6 * (PRCMin(60, (2 * nCasterLvl)));
}
if(nMetaMagic & METAMAGIC_EMPOWER)
@@ -126,11 +126,11 @@ void main()
else if(GetAlignmentGoodEvil(oTarget) == ALIGNMENT_NEUTRAL)
{
//Half damage for neutrality, Damage = 1d6
nDam = d6(min(40,nCasterLvl));
nDam = d6(PRCMin(40,nCasterLvl));
if(nMetaMagic & METAMAGIC_MAXIMIZE)
{
nDam = 6 * (min(40,nCasterLvl));
nDam = 6 * (PRCMin(40,nCasterLvl));
}
if(nMetaMagic & METAMAGIC_EMPOWER)