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.
This commit is contained in:
18
nwn/nwnprc/trunk/scripts/monk_abundstep.nss
Normal file
18
nwn/nwnprc/trunk/scripts/monk_abundstep.nss
Normal file
@@ -0,0 +1,18 @@
|
||||
/*
|
||||
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);
|
||||
}
|
||||
Reference in New Issue
Block a user