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.
28 lines
1.2 KiB
Plaintext
28 lines
1.2 KiB
Plaintext
#include "prc_alterations"
|
|
#include "psi_inc_psifunc"
|
|
|
|
void main()
|
|
{
|
|
int nSpell = GetLastSpell();
|
|
int nMyLevel = GetLocalInt(OBJECT_SELF,"X2_PLC_GLYPH_CASTER_LEVEL");
|
|
int nVsLevel = PRCGetCasterLevel(GetLastSpellCaster());
|
|
int nTest;
|
|
|
|
switch(nSpell)
|
|
{
|
|
case SPELL_LESSER_DISPEL : nTest = d20(1) + PRCMin(5, nVsLevel); break;
|
|
case SPELL_DISPEL_MAGIC : nTest = d20(1) + PRCMin(10, nVsLevel); break;
|
|
case SPELL_DISPELLING_TOUCH : nTest = d20(1) + PRCMin(10, nVsLevel); break;
|
|
case SPELL_SLASHING_DISPEL : nTest = d20(1) + PRCMin(10, nVsLevel); break;
|
|
case POWER_DISPELPSIONICS : nTest = d20(1) + PRCMin(15, GetManifesterLevel(GetLastSpellCaster())); break;
|
|
case SPELL_GREATER_DISPELLING : nTest = d20(1) + PRCMin(20, nVsLevel); break;
|
|
case SPELL_GREAT_WALL_OF_DISPEL : nTest = d20(1) + PRCMin(20, nVsLevel); break;
|
|
case SPELL_MORDENKAINENS_DISJUNCTION: nTest = d20(1) + PRCMin(40, nVsLevel); break;
|
|
case 4061 : nTest = d20(1) + PRCMin(40, nVsLevel); break;//Superb Dispelling
|
|
default : nTest = 0; break;
|
|
}
|
|
if (nTest >= 11 + nMyLevel)
|
|
{
|
|
DestroyObject(OBJECT_SELF);
|
|
}
|
|
} |