Updated AMS marker feats. Removed arcane & divine marker feats. Updated Dread Necromancer for epic progression. Updated weapon baseitem models. Updated new weapons for crafting & npc equip. Updated prefix. Updated release archive.
17 lines
323 B
Plaintext
17 lines
323 B
Plaintext
/*
|
|
Shadow Ride
|
|
Type of Feat: Class Specific
|
|
Prerequisite: Crinti Shadow Marauder 1
|
|
Specifics: You may teleport, as per Dimension Door, once per day per class level.
|
|
Use: Selected
|
|
*/
|
|
|
|
#include "spinc_dimdoor"
|
|
|
|
void main()
|
|
{
|
|
object oInitiator = OBJECT_SELF;
|
|
DimensionDoor(oInitiator, GetHitDice(oInitiator));
|
|
}
|
|
|