Fixed Displacer Mantle's shoulder bind. Maybe fixed Essesnce of Lifespark. Fixed Blackguard's Aura from effecting non-hostile creatures. Fixed name bug w/ Holy Water. Added 3 starting packages for the Archivist. Updated PRC8 version number. Reorganized packages.2da Added Package worksheet to notes.
33 lines
949 B
Plaintext
33 lines
949 B
Plaintext
#include "prc_feat_const"
|
|
|
|
void main()
|
|
{
|
|
object oPC = GetAreaOfEffectCreator();
|
|
object oTarget = GetEnteringObject();
|
|
|
|
// Apply the Aura of Despair penalties to hostiles only.
|
|
if (GetIsEnemy(oTarget, oPC))
|
|
{
|
|
int nPen = 2;
|
|
if (GetHasFeat(FEAT_IMPROVED_AURA_OF_DESPAIR, oPC)) nPen += 2;
|
|
effect eLink = EffectSavingThrowDecrease(SAVING_THROW_ALL, nPen);
|
|
ApplyEffectToObject(DURATION_TYPE_TEMPORARY, eLink, oTarget, 6.0);
|
|
}
|
|
}
|
|
|
|
|
|
/* void main()
|
|
{
|
|
object oPC = GetAreaOfEffectCreator();
|
|
object oTarget = GetEnteringObject();
|
|
|
|
// Apply the Aura of Despair penalties.
|
|
// Doesn't affect allies
|
|
if(!GetIsFriend(oTarget, oPC))
|
|
{
|
|
int nPen = 2;
|
|
if (GetHasFeat(FEAT_IMPROVED_AURA_OF_DESPAIR, oPC)) nPen += 2;
|
|
effect eLink = EffectSavingThrowDecrease(SAVING_THROW_ALL, nPen);
|
|
ApplyEffectToObject(DURATION_TYPE_TEMPORARY, eLink, oTarget, 6.0);
|
|
}
|
|
} */ |