PRC8/trunk/newspellbook/true_utr_fogvoda.nss
Jaysyn904 1662218bb4 Initial upload.
Adding base PRC 4.19a files to repository.
2022-10-07 13:51:24 -04:00

47 lines
1.3 KiB
Plaintext

/*
----------------
Fog from the Void, Fog Cloud Enter
true_utr_fogvoid
----------------
1/9/06 by Stratovarius
*/ /** @file
Fog from the Void
Level: Perfected Map 1
Range: 100 feet
Area: 20' Radius
Duration: 1 Minute
Spell Resistance: No
Save: None
Metautterances: Extend
At your words, moisture in the air and ground condenses into a thick mist.
You create a thick, roiling cloud of fog like the fog cloud spell.
If you add 10 to the DC of your Truespeak check, you can create a solid fog, as the spell.
*/
#include "true_inc_trufunc"
#include "true_utterhook"
//#include "prc_alterations"
void main()
{
SetAllAoEInts(UTTER_FOG_VOID_CLOUD, OBJECT_SELF, GetSpellSaveDC());
//Declare major variables
object oTarget = GetEnteringObject();
effect eConceal = EffectConcealment(20, MISS_CHANCE_TYPE_VS_MELEE);
effect eConceal2 = EffectConcealment(50, MISS_CHANCE_TYPE_VS_RANGED);
// Link
effect eLink = EffectLinkEffects(eConceal, eConceal2);
//Fire cast spell at event for the target
SignalEvent(oTarget, EventSpellCastAt(GetAreaOfEffectCreator(), UTTER_FOG_VOID_CLOUD, FALSE));
// Maximum time possible. If its less, its simply cleaned up when the utterance ends.
SPApplyEffectToObject(DURATION_TYPE_TEMPORARY, eLink, oTarget, RoundsToSeconds(20));
}