Added Monk's Abundant Step class ability. Moved Diamond Soul to Monk 13 per PnP. Traded Werewolf's Knockdown for Improved Trip.
18 lines
470 B
Plaintext
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);
|
|
} |