PRC8_fork/nwn/trunk/scripts/manat_furass.nss
Jaysyn904 5914ed2ab5 Updated Release Archive
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.
2023-08-22 10:00:21 -04:00

21 lines
673 B
Plaintext

#include "prc_alterations"
void main()
{
if (GetHasSpellEffect(SPELL_FURIOUS_ASSAULT))
{
PRCRemoveSpellEffects(SPELL_FURIOUS_ASSAULT,OBJECT_SELF,OBJECT_SELF);
string nMes = "*Furious Assault Mode Deactivated*";
FloatingTextStringOnCreature(nMes, OBJECT_SELF, FALSE);
}
else
{
ApplyEffectToObject(DURATION_TYPE_PERMANENT,ExtraordinaryEffect(EffectLinkEffects(EffectModifyAttacks(1),EffectAttackDecrease(2))),OBJECT_SELF);
ApplyEffectToObject(DURATION_TYPE_TEMPORARY,EffectVisualEffect(VFX_FNF_LOS_HOLY_20),OBJECT_SELF,2.0);
string nMes = "*Furious Assault Mode Activated*";
FloatingTextStringOnCreature(nMes, OBJECT_SELF, FALSE);
}
}