PRC8/nwn/nwnprc/trunk/smp/xxx_s_guardman.nss
Jaysyn904 6ec137a24e Updated AMS marker feats
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.
2024-02-11 14:01:05 -05:00

71 lines
2.4 KiB
Plaintext

/*:://////////////////////////////////////////////
//:: Spell Name Guardian Mantle
//:: Spell FileName XXX_S_GuardMan
//:://////////////////////////////////////////////
//:: In Game Spell desctiption
//:://////////////////////////////////////////////
Abjuration
Level: Sor/Wiz 7
Components: V, S
Casting Time: Free Quickened spell; see text
Range: Personal
Duration: 4 rounds
Saving Throw: None
Spell Resistance: Yes (Harmless)
Source: Various (Baptor)
This spell wraps the caster in a blanket of protective energy, granting him
DR 20/Epic for the duration of the spell. In addition, as it is cast with a
casting time of 0, it acts as if quickened, however, another quickened spell
cannot be cast in the same round.
//:://////////////////////////////////////////////
//:: Spell Effects Applied / Notes
//:://////////////////////////////////////////////
Series: Guardian Mantle, Greater Guardian Mantle and Absolute Immunity.
DR: 20/Epic, 40/Epic and 60/Epic respectivly.
Could change to be 1 round/5 levels, or 1 round/4 levels, and still be
balancedish.
//:://////////////////////////////////////////////
//:: Created By: Jasperre
//::////////////////////////////////////////////*/
#include "SMP_INC_SPELLS"
void main()
{
// Spell Hook Check.
if(!SMP_SpellHookCheck(SMP_SPELL_GUARDIAN_MANTLE)) return;
// Declare major variables
object oCaster = OBJECT_SELF;
object oTarget = GetSpellTargetObject();
// Duration is 4 rounds.
float fDuration = RoundsToSeconds(4);
// Declare effects
effect eDR = EffectDamageReduction(20, DAMAGE_POWER_PLUS_TWENTY);
effect eDur = EffectVisualEffect(SMP_VFX_DUR_GUARDIAN_MANTLE);
effect eCessate = EffectVisualEffect(VFX_DUR_CESSATE_POSITIVE);
// Link effects
effect eLink = EffectLinkEffects(eDR, eDur);
eLink = EffectLinkEffects(eLink, eCessate);
// Remove previous effects
SMP_RemoveSpellEffectsFromTarget(SMP_SPELL_GUARDIAN_MANTLE, oTarget);
// Signal spell cast at
SMP_SignalSpellCastAt(oTarget, SMP_SPELL_GUARDIAN_MANTLE, FALSE);
// Apply effects to the target
SMP_ApplyDuration(oTarget, eLink, fDuration);
// Additional: Set to not able to cast quickened spells (or another one of
// these) this round.
// NOTE: NOT WORKING YET.
SetLocalInt(oCaster, "SMP_NO_QUICKENED_SPELLS", TRUE);
DelayCommand(5.5, DeleteLocalInt(oCaster, "SMP_NO_QUICKENED_SPELLS"));
}