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.
92 lines
2.9 KiB
Plaintext
92 lines
2.9 KiB
Plaintext
///::///////////////////////////////////////////////
|
|
//:: Heal
|
|
//:: [NW_S0_Heal.nss]
|
|
//:: Copyright (c) 2000 Bioware Corp.
|
|
//:://////////////////////////////////////////////
|
|
//:: Heals the target to full unless they are undead.
|
|
//:: If undead they reduced to 1d4 HP.
|
|
//:://////////////////////////////////////////////
|
|
//:: Created By: Preston Watamaniuk
|
|
//:: Created On: Jan 12, 2001
|
|
//:://////////////////////////////////////////////
|
|
//:: Update Pass By: Preston W, On: Aug 1, 2001
|
|
|
|
#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
|
|
|
|
SpeakString("I_AM_HEALING", TALKVOLUME_SILENT_TALK);
|
|
//Declare major variables
|
|
object oTarget = GetSpellTargetObject();
|
|
effect eKill, eHeal;
|
|
int nDamage, nHeal, nModify, nMetaMagic, nTouch;
|
|
effect eSun = EffectVisualEffect(VFX_IMP_SUNSTRIKE);
|
|
effect eHealVis = EffectVisualEffect(VFX_IMP_HEALING_X);
|
|
//Check to see if the target is an undead
|
|
if (GetRacialType(oTarget) == RACIAL_TYPE_UNDEAD)
|
|
{
|
|
if(!GetIsReactionTypeFriendly(oTarget))
|
|
{
|
|
//Fire cast spell at event for the specified target
|
|
SignalEvent(oTarget, EventSpellCastAt(OBJECT_SELF, SPELL_HEAL));
|
|
//Make a touch attack
|
|
if (TouchAttackMelee(oTarget))
|
|
{
|
|
//Make SR check
|
|
if (!MyResistSpell(OBJECT_SELF, oTarget))
|
|
{
|
|
//Roll damage
|
|
nModify = d4();
|
|
nMetaMagic = GetMetaMagicFeat();
|
|
//Make metamagic check
|
|
if (nMetaMagic == METAMAGIC_MAXIMIZE)
|
|
{
|
|
nModify = 1;
|
|
}
|
|
//Figure out the amount of damage to inflict
|
|
nDamage = GetCurrentHitPoints(oTarget) - nModify;
|
|
//Set damage
|
|
eKill = EffectDamage(nDamage, DAMAGE_TYPE_POSITIVE);
|
|
//Apply damage effect and VFX impact
|
|
ApplyEffectToObject(DURATION_TYPE_INSTANT, eKill, oTarget);
|
|
ApplyEffectToObject(DURATION_TYPE_INSTANT, eSun, oTarget);
|
|
}
|
|
}
|
|
}
|
|
}
|
|
else
|
|
{
|
|
//Fire cast spell at event for the specified target
|
|
SignalEvent(oTarget, EventSpellCastAt(OBJECT_SELF, SPELL_HEAL, FALSE));
|
|
//Figure out how much to heal
|
|
nHeal = GetMaxHitPoints(oTarget);
|
|
//Set the heal effect
|
|
eHeal = EffectHeal(nHeal);
|
|
//Apply the heal effect and the VFX impact
|
|
ApplyEffectToObject(DURATION_TYPE_INSTANT, eHealVis, oTarget);
|
|
ApplyEffectToObject(DURATION_TYPE_INSTANT, eHeal, oTarget);
|
|
}
|
|
}
|
|
|
|
|
|
|
|
|