Initial upload. PRC8 has been added. Module compiles, PRC's default AI & treasure scripts have been integrated. Started work on top hak for SLA / Ability / Scripting modifications.
112 lines
2.9 KiB
Plaintext
112 lines
2.9 KiB
Plaintext
///::///////////////////////////////////////////////
|
|
//:: [Power Word Stun]
|
|
//:: [NW_S0_PWStun.nss]
|
|
//:: Copyright (c) 2000 Bioware Corp.
|
|
//:://////////////////////////////////////////////
|
|
/*
|
|
The creature is stunned for a certain number of
|
|
rounds depending on its HP. No save.
|
|
*/
|
|
//:://////////////////////////////////////////////
|
|
//:: Created By: Preston Watamaniuk
|
|
//:: Created On: Feb 4, 2001
|
|
//:://////////////////////////////////////////////
|
|
//:: VFX Pass By: Preston W, On: June 22, 2001
|
|
|
|
/*
|
|
bugfix by Kovi 2002.07.28
|
|
- =151HP stunned for 4d4 rounds
|
|
- >151HP sometimes stunned for indefinit duration
|
|
*/
|
|
|
|
|
|
#include "NW_I0_SPELLS"
|
|
#include "x2_inc_spellhook"
|
|
|
|
void main()
|
|
{
|
|
|
|
/*
|
|
Spellcast Hook Code
|
|
Added 2003-06-23 by GeorgZ
|
|
If you want to make changes to all spells,
|
|
check x2_inc_spellhook.nss to find out more
|
|
|
|
*/
|
|
|
|
if (!X2PreSpellCastCode())
|
|
{
|
|
// If code within the PreSpellCastHook (i.e. UMD) reports FALSE, do not run this spell
|
|
return;
|
|
}
|
|
|
|
// End of Spell Cast Hook
|
|
|
|
|
|
//Declare major variables
|
|
object oTarget = GetSpellTargetObject();
|
|
int nHP = GetCurrentHitPoints(oTarget);
|
|
effect eStun = EffectStunned();
|
|
effect eMind = EffectVisualEffect(VFX_DUR_MIND_AFFECTING_DISABLED);
|
|
effect eLink = EffectLinkEffects(eMind, eStun);
|
|
effect eVis = EffectVisualEffect(VFX_IMP_STUN);
|
|
effect eWord = EffectVisualEffect(VFX_FNF_PWSTUN);
|
|
int nDuration;
|
|
int nMetaMagic = GetMetaMagicFeat();
|
|
int nMeta;
|
|
//Apply the VFX impact
|
|
ApplyEffectAtLocation(DURATION_TYPE_INSTANT, eWord, GetSpellTargetLocation());
|
|
//Determine the number rounds the creature will be stunned
|
|
if (nHP >= 151)
|
|
{
|
|
nDuration = 0;
|
|
nMeta = 0;
|
|
}
|
|
else if (nHP >= 101 && nHP <= 150)
|
|
{
|
|
nDuration = d4(1);
|
|
nMeta = 4;
|
|
}
|
|
else if (nHP >= 51 && nHP <= 100)
|
|
{
|
|
nDuration = d4(2);
|
|
nMeta = 8;
|
|
}
|
|
else
|
|
{
|
|
nDuration = d4(4);
|
|
nMeta = 16;
|
|
}
|
|
|
|
//Enter Metamagic conditions
|
|
if (nMetaMagic == METAMAGIC_MAXIMIZE)
|
|
{
|
|
nDuration = nMeta;//Damage is at max
|
|
}
|
|
else if (nMetaMagic == METAMAGIC_EMPOWER)
|
|
{
|
|
nDuration = nDuration + (nDuration/2); //Damage/Healing is +50%
|
|
}
|
|
else if (nMetaMagic == METAMAGIC_EXTEND)
|
|
{
|
|
nDuration = nDuration * 2; //Duration is +100%
|
|
}
|
|
|
|
if(!GetIsReactionTypeFriendly(oTarget))
|
|
{
|
|
//Fire cast spell at event for the specified target
|
|
SignalEvent(oTarget, EventSpellCastAt(OBJECT_SELF, SPELL_POWER_WORD_STUN));
|
|
//Make an SR check
|
|
if(!MyResistSpell(OBJECT_SELF, oTarget))
|
|
{
|
|
if (nDuration>0)
|
|
{
|
|
//Apply linked effect and the VFX impact
|
|
ApplyEffectToObject(DURATION_TYPE_INSTANT, eVis, oTarget);
|
|
ApplyEffectToObject(DURATION_TYPE_TEMPORARY, eLink, oTarget, RoundsToSeconds(nDuration));
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|