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.
68 lines
2.4 KiB
Plaintext
68 lines
2.4 KiB
Plaintext
/*
|
|
----------------
|
|
Catapsi, OnEnter
|
|
|
|
psi_pow_catapsia
|
|
----------------
|
|
|
|
27/3/05 by Stratovarius
|
|
*/ /** @file
|
|
|
|
Catapsi, OnEnter
|
|
|
|
Telepathy [Mind-Affecting]
|
|
Level: Psion/wilder 5, psychic warrior 5
|
|
Manifesting Time: 1 standard action
|
|
Range: 30 ft.
|
|
Area: 30-ft.-radius emanation centered on you
|
|
Duration: 1 round/level
|
|
Saving Throw: Will negates; see text
|
|
Power Resistance: Yes
|
|
Power Points: 9
|
|
Metapsionics: Extend
|
|
|
|
By manifesting this power, you generate psychic static, interfering with the
|
|
ability of other psionic characters to manifest their powers or use psi-like
|
|
abilities (you are not affected by your own catapsi manifestation). All
|
|
psionic activity within the area requires 4 more power points to manifest
|
|
than normal, unless a character makes a Will save each time he attempts to
|
|
manifest a power. If two or more fields of catapsi overlap, the effects are
|
|
not cumulative.
|
|
|
|
The limit on the number of power points a subject can spend on a power
|
|
remains in effect; thus, a subject may not be able to manifest its highest-
|
|
level powers. If manifesting a power would cause the manifester to exceed
|
|
his available power points or his spending limits, the manifestation fails
|
|
automatically, but no power points are expended.
|
|
*/
|
|
|
|
#include "psi_inc_psifunc"
|
|
#include "psi_inc_pwresist"
|
|
#include "psi_spellhook"
|
|
#include "prc_inc_spells"
|
|
|
|
void main()
|
|
{
|
|
object oManifester = GetAreaOfEffectCreator();
|
|
object oTarget = GetEnteringObject();
|
|
object oAoE = OBJECT_SELF;
|
|
int nDC = GetLocalInt(oAoE, "PRC_Catapsi_DC");
|
|
int nPen = GetLocalInt(oAoE, "PRC_Catapsi_PowerPenetration");
|
|
|
|
// Some target validity checking
|
|
if(oTarget != oManifester && // The field does not affect the manifester
|
|
!GetLocalInt(oTarget, "PRC_IsInCatapsi") // And the target is not already affected by another Catapsi field. This is done to prevent ugly concurrency issues
|
|
)
|
|
{
|
|
// Let the AI know
|
|
PRCSignalSpellEvent(oTarget, TRUE, POWER_CATAPSI, oManifester);
|
|
|
|
// Check for Power Resistance
|
|
if(PRCMyResistPower(oManifester, oTarget, nPen))
|
|
{
|
|
SetLocalInt(oTarget, "PRC_IsInCatapsi", TRUE);
|
|
SetLocalInt(oTarget, "PRC_Catapsi_DC", nDC);
|
|
SetLocalObject(oTarget, "PRC_Catapsi_Manifester", oManifester);
|
|
}// end if - SR check
|
|
}// end if - Target is valid for being affected
|
|
} |