PRC8/nwn/nwnprc/trunk/scripts/prc_masters_will.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

42 lines
1.7 KiB
Plaintext
Raw 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.

//////////////////////////////////////////////////////////////////
// Master's Will
// prc_masters_will.nss
/////////////////////////////////////////////////////////////////
/** @file Masters Will [Vile]
The elder evil you serve is fickle in its rewards and punishments.
Prerequisites: Chosen of Evil or undead type, Evil Brand.
Benefit: As an immediate action, you can beseech the
elder evil for assistance. Roll 1d20. If the result of the die
roll is an odd number, you gain a +8 bonus on attack rolls,
saving throws, and skill checks for 1 round. If the
result is even, you take 1 point of damage for each Hit Die or
character level you possess.
*/
/////////////////////////////////////////////////////////////////
// Tenjac - 5/23/08
/////////////////////////////////////////////////////////////////
void main()
{
object oPC = OBJECT_SELF;
int nRoll = d20(1);
if(nRoll%2==1)
{
effect eLink = EffectLinkEffects(EffectAttackIncrease(8), EffectSavingThrowIncrease(SAVING_THROW_ALL, 8, SAVING_THROW_TYPE_ALL));
eLink = EffectLinkEffects(eLink, EffectSkillIncrease(SKILL_ALL_SKILLS, 8));
eLink = EffectLinkEffects(eLink, EffectVisualEffect(VFX_DUR_PROTECTION_EVIL_MAJOR));
ApplyEffectToObject(DURATION_TYPE_TEMPORARY, eLink, oPC, 6.0f);
SendMessageToPC(oPC, "The elder evil you serve favors you.");
}
else
{
int nHD = GetHitDice(oPC);
ApplyEffectToObject(DURATION_TYPE_INSTANT, EffectVisualEffect(VFX_IMP_REDUCE_ABILITY_SCORE), oPC);
ApplyEffectToObject(DURATION_TYPE_INSTANT, EffectDamage(nHD, DAMAGE_TYPE_MAGICAL), oPC);
SendMessageToPC(oPC, "The elder evil you serve rebukes you.");
}
}