2024-02-20 22:24:11 -05:00
|
|
|
|
//::///////////////////////////////////////////////
|
|
|
|
|
//:: Name Protection from Arrows
|
|
|
|
|
//:: FileName sp_prot_arrows.nss
|
|
|
|
|
//:://////////////////////////////////////////////
|
|
|
|
|
/**@file Protection from Arrows
|
|
|
|
|
Abjuration
|
|
|
|
|
Level: Sor/Wiz 2, Hexblade 2
|
|
|
|
|
Components: V, S, F
|
|
|
|
|
Casting Time: 1 standard action
|
|
|
|
|
Range: Touch
|
|
|
|
|
Target: Creature touched
|
|
|
|
|
Duration: 1 hour/level or until discharged
|
|
|
|
|
Saving Throw: Will negates (harmless)
|
|
|
|
|
Spell Resistance: Yes (harmless)
|
|
|
|
|
|
|
|
|
|
The warded creature gains resistance to ranged weapons.
|
|
|
|
|
The subject gains damage reduction 10/magic against
|
|
|
|
|
ranged weapons. (This spell doesn<73>t grant you the
|
|
|
|
|
ability to damage creatures with similar damage
|
|
|
|
|
reduction.) Once the spell has prevented a total of
|
|
|
|
|
10 points of damage per caster level (maximum 100
|
|
|
|
|
points), it is discharged.
|
|
|
|
|
|
|
|
|
|
Focus: A piece of shell from a tortoise or a turtle.
|
|
|
|
|
|
|
|
|
|
**/
|
|
|
|
|
|
|
|
|
|
//////////////////////////////////////////////////
|
|
|
|
|
// Author: Tenjac
|
|
|
|
|
// Date: 16.9.2006
|
|
|
|
|
/////////////////////////////////////////////////
|
|
|
|
|
|
|
|
|
|
#include "prc_alterations"
|
|
|
|
|
#include "prc_inc_spells"
|
|
|
|
|
|
|
|
|
|
void main()
|
|
|
|
|
{
|
|
|
|
|
if(!X2PreSpellCastCode()) return;
|
|
|
|
|
|
|
|
|
|
PRCSetSchool(SPELL_SCHOOL_ABJURATION);
|
|
|
|
|
|
|
|
|
|
object oPC = OBJECT_SELF;
|
|
|
|
|
object oTarget = PRCGetSpellTargetObject();
|
|
|
|
|
int nCasterLvl = PRCGetCasterLevel(oPC);
|
|
|
|
|
float fDur = HoursToSeconds(nCasterLvl);
|
|
|
|
|
int nMetaMagic = PRCGetMetaMagicFeat();
|
|
|
|
|
|
|
|
|
|
if(nMetaMagic & METAMAGIC_EXTEND)
|
|
|
|
|
{
|
|
|
|
|
fDur += fDur;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
PRCSignalSpellEvent(oTarget,FALSE, SPELL_PROTECTION_FROM_ARROWS, oPC);
|
|
|
|
|
|
|
|
|
|
// Damage Resistance 10 piercing, max of 100 total
|
2025-02-10 14:06:04 -05:00
|
|
|
|
effect eBuff = EffectLinkEffects(EffectDamageResistance(DAMAGE_TYPE_PIERCING, 10+(nCasterLvl/4), PRCMin((10 * nCasterLvl), 100)), EffectVisualEffect(VFX_DUR_PROTECTION_ARROWS));
|
2024-02-20 22:24:11 -05:00
|
|
|
|
|
|
|
|
|
SPApplyEffectToObject(DURATION_TYPE_TEMPORARY, eBuff, oTarget, fDur);
|
|
|
|
|
|
|
|
|
|
PRCSetSchool();
|
|
|
|
|
}
|