Exalted update

Updated Vow of Poverty. Added Sanctify Ki Strike, Holy Strike, Fist of Heavens, Vow of Abstinence, Vow of Chastity & Gift of Faith.  (@fenac).  Turned off the Taunt & Parry skills.  Re-disabled AC & save bonuses from Tumble & Spellcraft.   Updated min() & max() to PRCmin() & PRCmax() to not conflict with similarly named NUI adjacent functions.  Set Point Blank Shot to 30' per PnP.  Added icon for Chosen of Evil.  Started work on Hidden Talent.  Created Psionics function cheatsheet.  Updated release archive.
This commit is contained in:
Jaysyn904
2025-01-29 22:46:38 -05:00
parent 370b29e917
commit e641b42f84
209 changed files with 1893 additions and 926 deletions

View File

@@ -41,7 +41,7 @@ void main()
}
else if(GetLocalInt(oPC, "HadrimoiPerfectSymmetry"))
{
nAttackCount = max(nBAB, 3);
nAttackCount = PRCMax(nBAB, 3);
if (DEBUG) DoDebug("prc_bab_caller: Using hadrimoi perfect symmetry, # attacks = " + IntToString(nAttackCount));
}
else
@@ -77,7 +77,7 @@ void main()
if (DEBUG) DoDebug("prc_bab_caller: detected Spell Tensers Transformation, # attacks = " + IntToString(nTTAttackCount));
}
int nMax = max(nDPAttackCount, nTTAttackCount);
int nMax = PRCMax(nDPAttackCount, nTTAttackCount);
// we only consider any changes in # attacks, if Tenser's or DP *increases* our "normal" attack count!
// this makes sure, that we won't call SetBaseAttackBonus needlessly
@@ -142,7 +142,7 @@ void main()
// the aurora engine can also handle up to two offhand attacks
//calculate the number of main hand attacks the aurora engine can at most handle, including the up to 2 offhand attacks
int nCap = 12 - min(nOffhand,2);
int nCap = 12 - PRCMin(nOffhand,2);
// apply the cap and calculate the number of overflow (main hand) attacks, that aurora engine can't handle (usually this will never happen)
if(nAttackCount > nCap)
{