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.
28 lines
1.1 KiB
Plaintext
28 lines
1.1 KiB
Plaintext
/*
|
|
14/3/21
|
|
|
|
Haures, the Dreaming Duke
|
|
|
|
Haures grants his summoners the power to create illusions, protect their thoughts, and move through objects like a ghost.
|
|
|
|
Vestige Level: 6th
|
|
Binding DC: 25
|
|
Special Requirement: No
|
|
|
|
Influence: When influenced by Haures, you become an eccentric, often speaking to yourself and to imaginary friends. In addition, Haures requires that if you encounter and disbelieve an illusion not of your own making, you must not voluntarily enter its area.
|
|
|
|
Granted Abilities:
|
|
Haures shields your mind with his madness, allows you to move like a ghost, gives you the power to fool the senses, and grants you the ability to kill others with their deepest fears.
|
|
|
|
Major Image: You can create an illusion at will, as though you had cast mislead (caster level equals your effective binder level). Once you have used this ability, you cannot do so again for 5 rounds.
|
|
*/
|
|
|
|
#include "bnd_inc_bndfunc"
|
|
|
|
void main()
|
|
{
|
|
object oBinder = OBJECT_SELF;
|
|
if(!BindAbilCooldown(oBinder, GetSpellId(), VESTIGE_HAURES)) return;
|
|
DoRacialSLA(SPELL_MISLEAD, GetBinderLevel(oBinder, VESTIGE_HAURES), GetBinderDC(oBinder, VESTIGE_HAURES));
|
|
}
|
|
|