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

39 lines
987 B
Plaintext

//::///////////////////////////////////////////////
//:: Name Dragonwrack
//:: FileName ft_dw_armor.nss
//:://////////////////////////////////////////////
/*
Dragonwrack for the Vassal of Bahamut's Armor
*/
//:://////////////////////////////////////////////
//:: Created By: Zedium
//:: Created On: 5 april 2004
//:://////////////////////////////////////////////
#include "prc_class_const"
#include "prc_inc_racial"
#include "prc_inc_nwscript"
void main()
{
int nVassal = GetLevelByClass(CLASS_TYPE_VASSAL, OBJECT_SELF);
object oTarget = PRCGetSpellTargetObject();
int iDam;
effect eDam;
if (nVassal == 10)
{
iDam = d6(2);
}
else if (nVassal >= 4)
{
iDam = d6(1);
}
eDam = EffectDamage(iDam);
if (MyPRCGetRacialType(oTarget)==RACIAL_TYPE_DRAGON)
{
if (GetAlignmentGoodEvil(oTarget)==ALIGNMENT_EVIL)
{
ApplyEffectToObject(DURATION_TYPE_INSTANT, eDam, oTarget);
}
}
}