2025/10/24 Update

Renamed and reassociated Expanded Ability hak.
Updated Drow creatures to work with PEPS.
This commit is contained in:
Jaysyn904
2025-10-24 07:34:20 -04:00
parent 051ddf5d7f
commit 9142d652cd
283 changed files with 110 additions and 53 deletions

View File

@@ -0,0 +1,21 @@
//::///////////////////////////////////////////////
//:: Troglidyte Stench
//:: nw_s1_TrogStench.nss
//:: Copyright (c) 2004 Bioware Corp.
//:://////////////////////////////////////////////
/*
Objects entering the aura must make a fortitude saving
throw (DC 13) or suffer 1d6 points of Strength
Ability Damage
*/
//:://////////////////////////////////////////////
//:: Created By: Craig Welburn
//:: Created On: Nov 6, 2004
//:://////////////////////////////////////////////
void main()
{
effect eStench = EffectAreaOfEffect(AOE_MOB_TROGLODYTE_STENCH);
eStench = UnyieldingEffect(eStench);
ApplyEffectToObject(DURATION_TYPE_PERMANENT, eStench, OBJECT_SELF);
}