Updated AMS marker feats. Removed arcane & divine marker feats. Updated Dread Necromancer for epic progression. Updated weapon baseitem models. Updated new weapons for crafting & npc equip. Updated prefix. Updated release archive.
51 lines
1.5 KiB
Plaintext
51 lines
1.5 KiB
Plaintext
//:://////////////////////////////////////////////
|
|
//:: Name Cloak of Bravery On Exit
|
|
//:: FileName sp_cloakbraveB.nss
|
|
//:://////////////////////////////////////////////
|
|
/** @file
|
|
Abjuration [Mind-Affecting]
|
|
Level: Paladin 2, Cleric 3, Courage 3,
|
|
Components: V, S,
|
|
Casting Time: 1 standard action
|
|
Range: 60 ft.
|
|
Area: 60-ft.-radius emanation centered on you
|
|
Duration: 10 minutes/level
|
|
Saving Throw: Will negates (harmless)
|
|
Spell Resistance: Yes (harmless)
|
|
|
|
Summoning up your courage, you throw out your arm and sweep
|
|
it over the area, cloaking all your allies in a glittering
|
|
mantle of magic that bolsters their bravery.
|
|
|
|
All allies within the emanation (including you) gain a morale
|
|
bonus on saves against fear effects equal to your caster level
|
|
(to a maximum of +10 at caster level 10th).
|
|
*/
|
|
//:://////////////////////////////////////////////
|
|
//:: Created By: Tenjac
|
|
//:: Created On: 1/28/21
|
|
//:://////////////////////////////////////////////
|
|
|
|
#include "prc_sp_func"
|
|
#include "prc_add_spell_dc"
|
|
|
|
|
|
void main()
|
|
{
|
|
object oCaster = GetAreaOfEffectCreator();
|
|
object oTarget = GetExitingObject();
|
|
|
|
effect eToDispel = GetFirstEffect(oTarget);
|
|
|
|
while(GetIsEffectValid(eToDispel))
|
|
{
|
|
if(GetEffectSpellId(eToDispel) == SPELL_CLOAK_OF_BRAVERY)
|
|
|
|
{
|
|
RemoveEffect(oTarget, eToDispel);
|
|
}
|
|
|
|
eToDispel = GetNextEffect(oTarget);
|
|
}
|
|
}
|
|
} |