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:
Jaysyn904
2025-12-01 23:21:13 -05:00
parent 3546751f06
commit b920b58fe0
12 changed files with 841 additions and 922 deletions

View 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);
}