Further file organization
Further file organization
This commit is contained in:
17
nwn/nwnprc/trunk/scripts/prc_blkgrd_aod_a.nss
Normal file
17
nwn/nwnprc/trunk/scripts/prc_blkgrd_aod_a.nss
Normal file
@@ -0,0 +1,17 @@
|
||||
#include "prc_feat_const"
|
||||
|
||||
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);
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user