Files
PRC8/nwn/nwnprc/trunk/scripts/monk_abundstep.nss
Jaysyn904 b920b58fe0 2025/12/01 Late Update
Added Monk's Abundant Step class ability.
Moved Diamond Soul to Monk 13 per PnP.
Traded Werewolf's Knockdown for Improved Trip.
2025-12-01 23:21:13 -05:00

18 lines
470 B
Plaintext

/*
Abundant Step (Su)
Type of Feat: Class Specific
Prerequisite: Monk 12
Specifics: At 12th level or higher, a monk can slip magically between spaces, as if using the spell dimension door, once per day. Her caster level for this effect is one-half her monk level (rounded down).
Use: Selected
*/
#include "spinc_dimdoor"
void main()
{
object oMonk = OBJECT_SELF;
int nLevel = GetLevelByClass(CLASS_TYPE_MONK, oMonk);
DimensionDoor(oMonk, nLevel/2);
}