Initial upload.

Adding base PRC 4.19a files to repository.
This commit is contained in:
Jaysyn904
2022-10-07 13:51:24 -04:00
parent 646eb01834
commit 1662218bb4
22441 changed files with 1274376 additions and 0 deletions

View File

@@ -0,0 +1,28 @@
/*
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.
Phantasmal Killer: This ability functions like the phantasmal killer spell. 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_PHANTASMAL_KILLER, GetBinderLevel(oBinder, VESTIGE_HAURES), GetBinderDC(oBinder, VESTIGE_HAURES));
}