mirror of
http://prc.nwn.ee:3000/Jaysyn/PRC8.git
synced 2025-12-17 02:37:15 -05:00
Initial upload.
Adding base PRC 4.19a files to repository.
This commit is contained in:
22
trunk/scripts/prc_blkgrd_aod_b.nss
Normal file
22
trunk/scripts/prc_blkgrd_aod_b.nss
Normal file
@@ -0,0 +1,22 @@
|
||||
#include "prc_feat_const"
|
||||
|
||||
void main()
|
||||
{
|
||||
object oPC = GetAreaOfEffectCreator();
|
||||
int nPen = 2;
|
||||
if (GetHasFeat(FEAT_IMPROVED_AURA_OF_DESPAIR, oPC)) nPen += 2;
|
||||
effect eLink = EffectSavingThrowDecrease(SAVING_THROW_ALL, nPen);
|
||||
|
||||
object oTarget = GetFirstInPersistentObject(OBJECT_SELF);
|
||||
while(GetIsObjectValid(oTarget))
|
||||
{
|
||||
// Apply the Aura of Despair penalties.
|
||||
// Doesn't affect allies
|
||||
if(!GetIsFriend(oTarget, oPC))
|
||||
{
|
||||
ApplyEffectToObject(DURATION_TYPE_TEMPORARY, eLink, oTarget, 6.0);
|
||||
}
|
||||
//Get next target.
|
||||
oTarget = GetNextInPersistentObject(OBJECT_SELF);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user