PRC8/nwn/nwnprc/trunk/spells/sp_deflect.nss
Jaysyn904 e641b42f84 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.
2025-01-29 22:46:38 -05:00

68 lines
1.8 KiB
Plaintext

//::///////////////////////////////////////////////
//:: Name Lesser Deflect
//:: FileName sp_deflect.nss
//:://////////////////////////////////////////////
/**@file Lesser Deflect
Abjuration [Force]
Level: Duskblade 1, sorcerer/wizard 1
Components: V
Casting Time: 1 immediate action
Range: Personal
Duration: 1 round or until discharged
You project a field of ivisible force, creating a
short-lived protective barrier. You gain a
deflection bonus to your AC against a single attack;
this bonus is equal to +1 per three caster levels
(maximum +5).
**/
//::///////////////////////////////////////////////
//:: Name Deflect
//:: FileName sp_deflect.nss
//:://////////////////////////////////////////////
/**@file Deflect
Abjuration [Force]
Level: Duskblade 2, sorcerer/wizard 2
Components: V
Casting Time: 1 immediate action
Range: Personal
Duration: 1 round or until discharged
You project a field of ivisible force, creating a
short-lived protective barrier. You gain a
deflection bonus to your AC against a single attack;
this bonus is equal to 1/2 your caster level
(round down).
**/
#include "prc_alterations"
#include "prc_inc_spells"
void main()
{
if(!X2PreSpellCastCode()) return;
PRCSetSchool(SPELL_SCHOOL_ABJURATION);
object oPC = OBJECT_SELF;
float fDur = RoundsToSeconds(1);
int nCasterLvl = PRCGetCasterLevel(oPC);
int nMetaMagic = PRCGetMetaMagicFeat();
int nSpell = PRCGetSpellId();
int nBonus = nSpell == SPELL_DEFLECT ? nCasterLvl/2:
PRCMin(5, (nCasterLvl/3));
PRCSignalSpellEvent(oPC, FALSE, nSpell, oPC);
if(nMetaMagic & METAMAGIC_EXTEND)
fDur *= 2;
effect eBonus = EffectACIncrease(AC_DEFLECTION_BONUS, nBonus);
SPApplyEffectToObject(DURATION_TYPE_TEMPORARY, eBonus, oPC, fDur);
PRCSetSchool();
}