PRC8/nwn/nwnprc/trunk/newspellbook/bnd_vest_danttvl.nss
Jaysyn904 6ec137a24e Updated AMS marker feats
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.
2024-02-11 14:01:05 -05:00

55 lines
2.5 KiB
Plaintext
Raw Permalink Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

/*
09/03/21 by Stratovarius
Dantalion, the Star Emperor
Dantalion, called the Star Emperor for his legend and appearance, is a composite of many souls. He grants binders the ability to teleport short distances, read thoughts, and stop foes.
Vestige Level: 5th
Binding DC: 25
Special Requirement: No
Influence: Dantalions influence causes you to be aloof and use stately gestures. Dantalion cant help but be curious about the leaders of the day,
so anytime you are within 100 feet of someone who clearly is (or professes to be) a leader of others, Dantalion requires that you try to read that
persons thoughts. Once you have made the attempt, regardless of success or failure, you need not try to read that persons thoughts again.
Granted Abilities:
Pact magic grimoires attest to Dantalions profound wisdom and his extensive knowledge about all subjects. Because he knows all thoughts, he can grant
you a portion of that power, as well as the ability to travel just by thinking. You also gain a portion of his commanding presence, which many binders
ascribe to his royal origins.
Thought Travel: As a standard action, you can instantly transport yourself to any location you can see that is within 5 feet per effective binder level
you possess. Thought travel is a teleportation effect and is usable a number of times per day equal to your effective binder level. Once you have used
this ability, you cannot do so again for 5 rounds.
*/
#include "bnd_inc_bndfunc"
#include "spinc_dimdoor"
#include "prc_inc_template"
void main()
{
object oBinder = OBJECT_SELF;
int nCasterLevel = GetBinderLevel(oBinder, VESTIGE_DANTALION);
int nUses;
int nSLA = GetSpellId();
if(!BindAbilCooldown(oBinder, nSLA, VESTIGE_DANTALION)) return;
if (GetLevelByClass(CLASS_TYPE_SCION_DANTALION, oBinder) >= 4)
if(!TakeMoveAction(oBinder)) return;
nUses = nCasterLevel;
// Check uses per day
if (GetLegacyUses(oBinder, nSLA) >= nUses)
{
FloatingTextStringOnCreature("You have used " + GetStringByStrRef(StringToInt(Get2DACache("spells", "Name", nSLA))) + " the maximum amount of times today.", oBinder, FALSE);
return;
}
else
{
SetLegacyUses(oBinder, nSLA);
FloatingTextStringOnCreature("You have "+IntToString(nUses - GetLegacyUses(oBinder, nSLA))+ " uses of " + GetStringByStrRef(StringToInt(Get2DACache("spells", "Name", nSLA))) + " remaining today.", oBinder, FALSE);
DimensionDoor(oBinder, nCasterLevel);
}
}