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

35 lines
1.3 KiB
Plaintext

//::///////////////////////////////////////////////
//:: Lycanbane
//:: NW_S2_Lycanbane.nss
//:://////////////////////////////////////////////
/*
Le maitre menesrel transmet sa protection contre
les metamorphe pendant 1 minute.
*/
//:://////////////////////////////////////////////
//:: Created By: Age
//:: Created On: Jan 23, 2004
//:://////////////////////////////////////////////
#include "prc_feat_const"
#include "prc_spell_const"
#include "prc_inc_nwscript"
void main()
{
//Declare major variables
object oTarget = PRCGetSpellTargetObject();
effect eVisual = EffectVisualEffect(VFX_IMP_AC_BONUS);
//This feat is meant for allies.
if(oTarget == OBJECT_SELF)
{
FloatingTextStringOnCreature("You must target an ally. You already permanently have this effect.",OBJECT_SELF,TRUE);
IncrementRemainingFeatUses(OBJECT_SELF,FEAT_LYCANBANE);
return;
}
ApplyEffectToObject(DURATION_TYPE_PERMANENT, eVisual, oTarget);
effect eACBonus = VersusRacialTypeEffect(EffectACIncrease(5), RACIAL_TYPE_SHAPECHANGER);
ApplyEffectToObject(DURATION_TYPE_TEMPORARY, eACBonus, oTarget, 60.0);
//Fire cast spell at event for the specified target
SignalEvent(oTarget, EventSpellCastAt(OBJECT_SELF, SPELLABILITY_LYCANBANE, FALSE));
}