PRC8/nwn/nwnprc/trunk/newspellbook/bnd_vest_ronvsla.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

47 lines
1.7 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.

/**
* @file
* Spellscript for Ronove Vestige
*
Far Hand: As a swift action, you can lift and move an unattended object as per the Far Hand psionic power. Alternatively, you can use the telekinetic force to
push a creature as a standard action. The force deals 1d6 points of damage to the target and initiates a bull rush, using the forces Strength modifier and adding a +2 bonus.
Once you have used your far hand in this way, you cannot use it again for 5 rounds. The force is considered Medium in size, and it has a Strength score equal to your effective binder level.
*/
#include "bnd_inc_bndfunc"
#include "psi_inc_psifunc"
#include "prc_inc_combmove"
void main()
{
object oBinder = OBJECT_SELF;
int nBinderLevel = GetBinderLevel(oBinder, VESTIGE_RONOVE);
int nSLA = GetSpellId();
// All of these are under the same cooldown
if (nSLA == VESTIGE_RONOVE_BULLRUSH)
{
if(!BindAbilCooldown(oBinder, VESTIGE_RONOVE_BULLRUSH, VESTIGE_RONOVE)) return;
}
switch(nSLA){
case VESTIGE_RONOVE_FARHAND:
{
UsePower(POWER_FARHAND, CLASS_TYPE_PSION, TRUE, nBinderLevel);
break;
}
case VESTIGE_RONOVE_BULLRUSH:
{
object oTarget = PRCGetSpellTargetObject();
ApplyEffectToObject(DURATION_TYPE_INSTANT, EffectDamage(d6(), DAMAGE_TYPE_MAGICAL), oTarget);
// Turn it into an ability modifier
nBinderLevel = (nBinderLevel - 10) / 2;
SetLocalInt(oBinder, "RonoveBullRush", nBinderLevel+2);
DoBullRush(oBinder, oTarget, 0, FALSE, FALSE, TRUE, 0);
DelayCommand(0.5, DeleteLocalInt(oBinder, "RonoveBullRush"));
break;
}
}
}