PRC8/nwn/nwnprc/trunk/spells/sp_solid_fog.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

67 lines
2.1 KiB
Plaintext
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

//::///////////////////////////////////////////////
//:: Name Solid Fog
//:: FileName sp_solid_fog.nss
//:://////////////////////////////////////////////
/**@file Solid Fog
Conjuration (Creation)
Level: Sor/Wiz 4, Hexblade 4
Components: V, S, M
Duration: 1 min./level
Spell Resistance: No
This spell functions like fog cloud, but in addition
to obscuring sight, the solid fog is so thick that
any creature attempting to move through it progresses
at a speed of 5 feet, regardless of its normal speed,
and it takes a -2 penalty on all melee attack and
melee damage rolls. The vapors prevent effective
ranged weapon attacks (except for magic rays and the
like). A creature or object that falls into solid fog
is slowed, so that each 10 feet of vapor that it
passes through reduces falling damage by 1d6. A
creature cant take a 5-foot step while in solid fog.
However, unlike normal fog, only a severe wind
(31+ mph) disperses these vapors, and it does so in
1 round.
Solid fog can be made permanent with a permanency
spell. A permanent solid fog dispersed by wind
reforms in 10 minutes.
Material Component: A pinch of dried, powdered peas
combined with powdered animal hoof.
**/
///////////////////////////////////////////////////////
// Author: Tenjac
// Date: 17.9.06
//////////////////////////////////////////////////////
#include "prc_inc_spells"
void main()
{
if(!X2PreSpellCastCode()) return;
PRCSetSchool(SPELL_SCHOOL_CONJURATION);
object oPC = OBJECT_SELF;
location lTarget = PRCGetSpellTargetLocation();
int nMetaMagic = PRCGetMetaMagicFeat();
int nCasterLevel = PRCGetCasterLevel(oPC);
float fDur = 60.0f * nCasterLevel;
if(nMetaMagic & METAMAGIC_EXTEND)
fDur += fDur;
effect eAOE = EffectAreaOfEffect(AOE_PER_SOLID_FOG, "sp_solid_fogA", "", "sp_solid_fogB");
// Duration Effects
ApplyEffectAtLocation(DURATION_TYPE_TEMPORARY, eAOE, lTarget, fDur);
object oAoE = GetAreaOfEffectObject(lTarget, "AOE_PER_SOLID_FOG");
SetAllAoEInts(SPELL_SOLID_FOG, oAoE, 20, 0, nCasterLevel);
PRCSetSchool();
}