PRC8/nwn/nwnprc/trunk/scripts/prc_ninjca_gwalk.nss
Jaysyn904 f52cab6870 Added Martial Stalker feat
Added Martial Stalker feat.  Fixed Ninja not getting level based AC.  Updated Release archive.
2025-01-17 11:28:55 -05:00

31 lines
976 B
Plaintext

/*****************************************************
* Feat: Ghost Walk
* Description: 1 round per Ninja level
* (spell: etheralness). Uses up 2 ki points
*
* by Ryan Smith
*****************************************************/
#include "prc_inc_clsfunc"
void main()
{
if (GetLocalInt(OBJECT_SELF, "prc_ninja_ki") < 2)
{
IncrementRemainingFeatUses(OBJECT_SELF, FEAT_KI_DODGE);
SendMessageToPC(OBJECT_SELF, "You don't have enough ki to perform this action");
return;
}
if (!Ninja_AbilitiesEnabled(OBJECT_SELF))
{
IncrementRemainingFeatUses(OBJECT_SELF, FEAT_GHOST_WALK);
SendMessageToPC(OBJECT_SELF, "Your ki powers will not function while encumbered or wearing armor");
return;
}
Ninja_DecrementKi(OBJECT_SELF, FEAT_GHOST_WALK);
Ninja_DecrementKi(OBJECT_SELF);
float fDuration = RoundsToSeconds(GetLevelByClass(CLASS_TYPE_NINJA, OBJECT_SELF));
ApplyEffectToObject(DURATION_TYPE_TEMPORARY, EffectEthereal(), OBJECT_SELF, fDuration);
}