Updated Release Archive. Fixed Mage-killer prereqs. Removed old LETO & ConvoCC related files. Added organized spell scroll store. Fixed Gloura spellbook. Various TLK fixes. Reorganized Repo. Removed invalid user folders. Added DocGen back in.
91 lines
2.7 KiB
Plaintext
91 lines
2.7 KiB
Plaintext
/*
|
|
----------------
|
|
Danger Sense
|
|
|
|
psi_pow_dngrsns
|
|
----------------
|
|
|
|
12/12/04 by Stratovarius
|
|
*/ /**
|
|
|
|
Danger Sense
|
|
|
|
Clairsentience
|
|
Level: Psion/wilder 3, psychic warrior 3
|
|
Manifesting Time: 1 standard action
|
|
Range: Personal
|
|
Target: You
|
|
Duration: 1 hour/level
|
|
Power Points: 5
|
|
Metapsionics: Extend
|
|
|
|
You can sense the presence of danger before your senses would normally allow
|
|
it. Your intuitive sense alerts you to danger from traps, giving you a +4
|
|
insight bonus on Reflex saves to avoid traps and a +4 insight bonus to
|
|
Armor Class against attacks by traps.
|
|
|
|
Augment: If you spend 3 additional power points, this power also gives
|
|
you the uncanny dodge ability
|
|
|
|
*/
|
|
|
|
#include "psi_inc_psifunc"
|
|
#include "psi_inc_pwresist"
|
|
#include "psi_spellhook"
|
|
#include "prc_alterations"
|
|
|
|
void main()
|
|
{
|
|
/*
|
|
Spellcast Hook Code
|
|
Added 2004-11-02 by Stratovarius
|
|
If you want to make changes to all powers,
|
|
check psi_spellhook to find out more
|
|
|
|
*/
|
|
|
|
if (!PsiPrePowerCastCode())
|
|
{
|
|
// If code within the PrePowerCastHook (i.e. UMD) reports FALSE, do not run this spell
|
|
return;
|
|
}
|
|
|
|
// End of Spell Cast Hook
|
|
|
|
object oManifester = OBJECT_SELF;
|
|
object oTarget = PRCGetSpellTargetObject();
|
|
struct manifestation manif =
|
|
EvaluateManifestation(oManifester, oTarget,
|
|
PowerAugmentationProfile(PRC_NO_GENERIC_AUGMENTS,
|
|
3, 1
|
|
),
|
|
METAPSIONIC_EXTEND
|
|
);
|
|
|
|
if(manif.bCanManifest)
|
|
{
|
|
int nBonus = 4;
|
|
float fDuration = HoursToSeconds(manif.nManifesterLevel);
|
|
if(manif.bExtend) fDuration *= 2;
|
|
|
|
// Create effect
|
|
effect eReflex = EffectSavingThrowIncrease(SAVING_THROW_REFLEX, nBonus, SAVING_THROW_TYPE_TRAP);
|
|
effect eAC = VersusTrapEffect(EffectACIncrease(nBonus));
|
|
effect eVis = EffectVisualEffect(VFX_DUR_FREEDOM_OF_MOVEMENT);
|
|
effect eDur = EffectVisualEffect(VFX_DUR_CESSATE_POSITIVE);
|
|
effect eLink = EffectLinkEffects(eVis, eReflex);
|
|
eLink = EffectLinkEffects(eLink, eDur);
|
|
//eLink = EffectLinkEffects(eLink, eAC);
|
|
|
|
// Apply effect
|
|
SPApplyEffectToObject(DURATION_TYPE_TEMPORARY, eLink, oTarget, fDuration, TRUE, -1, manif.nManifesterLevel);
|
|
|
|
// If augmented, give Uncanny Dodge
|
|
if(manif.nTimesAugOptUsed_1 == 1)
|
|
{
|
|
itemproperty ipUD = PRCItemPropertyBonusFeat(IP_CONST_FEAT_UNCANNY_DODGE1);
|
|
IPSafeAddItemProperty(GetPCSkin(oTarget), ipUD, fDuration, X2_IP_ADDPROP_POLICY_KEEP_EXISTING, FALSE, FALSE);
|
|
}
|
|
}
|
|
}
|