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

56 lines
2.4 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.

/*
03/03/21 by Stratovarius
Agares, Truth Betrayed
Agares died at the hands of his allies for a wrong he did not commit. As a vestige, not only does he give binders the ability to weaken foes and knock them prone, but he also makes his summoner fearless.
Vestige Level: 4th
Binding DC: 22
Special Requirement: You must draw Agaress seal upon either the earth or an expanse of unworked stone.
Influence: Agaress loyalty in life and his anger at the betrayal perpetrated by his lieutenants has become a hatred of falsehood. When influenced
by Agares, you speak forthrightly and with confidence. You cannot use the Bluff skill, and when asked a direct question, you must answer truthfully and directly.
Granted Abilities:
Agares gives you the power to exalt yourself and your allies, to make the earth tremble beneath your feet, and to render foes weak.
Elemental Companion: You can summon an earth elemental to accompany you and fight for you. If you lose your elemental, you cannot summon it again for 1 hour.
The size of the earth elemental you can summon depends on your effective binder level. Below 11th, small. Below 15th, medium. Below 19th, large. 19th and above, huge.
*/
#include "bnd_inc_bndfunc"
void main()
{
object oBinder = OBJECT_SELF;
if (GetLocalInt(oBinder, "AgaresDelay")) return;
int nBinderLevel = GetBinderLevel(oBinder, VESTIGE_AGARES);
string sSummon = "bnd_agares_small";
if (nBinderLevel >= 19) sSummon = "bnd_agares_huge";
else if (nBinderLevel >= 15) sSummon = "bnd_agares_large";
else if (nBinderLevel >= 11) sSummon = "bnd_agares_med";
int i = 1;
int nCheck;
object oSummon = GetAssociate(ASSOCIATE_TYPE_SUMMONED, oBinder, i);
while(GetIsObjectValid(oSummon))
{
if (GetResRef(oSummon) == "bnd_agares_small" ||
GetResRef(oSummon) == "bnd_agares_med" ||
GetResRef(oSummon) == "bnd_agares_large" ||
GetResRef(oSummon) == "bnd_agares_huge")
return;
i++;
oSummon = GetAssociate(ASSOCIATE_TYPE_SUMMONED, oBinder, i);
}
//Apply the VFX impact and summon effect
MultisummonPreSummon();
ApplyEffectAtLocation(DURATION_TYPE_TEMPORARY, EffectSummonCreature(sSummon, VFX_FNF_SUMMON_MONSTER_3), PRCGetSpellTargetLocation(), HoursToSeconds(24));
SetLocalInt(oBinder, "AgaresSummoned", TRUE);
}