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:
@@ -79,7 +79,7 @@ PRCGetPowerResistance(object oTarget, object oCaster)
|
||||
)
|
||||
{
|
||||
// Only use the PR given by the power if it's higher than the previous
|
||||
iPowerRes = max(iPowerRes, GetLocalInt(oTarget, "PRC_Power_ThoughtShield_PR"));
|
||||
iPowerRes = PRCMax(iPowerRes, GetLocalInt(oTarget, "PRC_Power_ThoughtShield_PR"));
|
||||
}
|
||||
// Tower of Iron Will, 19 + augment vs Mind-Affecting
|
||||
if(GetLocalInt(oTarget, "PRC_Power_TowerOfIronWill_PR") &&
|
||||
@@ -87,7 +87,7 @@ PRCGetPowerResistance(object oTarget, object oCaster)
|
||||
)
|
||||
{
|
||||
// Only use the PR given by the power if it's higher than the previous
|
||||
iPowerRes = max(iPowerRes, GetLocalInt(oTarget, "PRC_Power_TowerOfIronWill_PR"));
|
||||
iPowerRes = PRCMax(iPowerRes, GetLocalInt(oTarget, "PRC_Power_TowerOfIronWill_PR"));
|
||||
}
|
||||
|
||||
// Foe Hunter SR stacks with normal SR
|
||||
|
Reference in New Issue
Block a user