32 lines
1.2 KiB
Plaintext
32 lines
1.2 KiB
Plaintext
//::///////////////////////////////////////////////
|
|
//:: Cure Minor Wounds
|
|
//:: NW_S0_CurMinW
|
|
//:: Copyright (c) 2001 Bioware Corp.
|
|
//:://////////////////////////////////////////////
|
|
/*
|
|
// As cure light wounds, except cure minor wounds
|
|
// cures only 1 point of damage
|
|
*/
|
|
//:://////////////////////////////////////////////
|
|
//:: Created By: Noel Borstad
|
|
//:: Created On: Oct 18, 2000
|
|
//:://////////////////////////////////////////////
|
|
//:: Last Updated By: Preston Watamaniuk, On: Feb 22, 2001
|
|
//:: Last Updated By: Preston Watamaniuk, On: April 6, 2001
|
|
|
|
#include "NW_I0_SPELLS"
|
|
#include "hos_alignment"
|
|
void main()
|
|
{
|
|
object oMe=OBJECT_SELF;
|
|
object oTarg=GetSpellTargetObject();
|
|
effect eDmg=EffectDamage(4);
|
|
if (GetLocalString(oMe,"sTeamID")!=GetLocalString(oTarg,"sTeamID")&&GetRacialType(oTarg)!=RACIAL_TYPE_UNDEAD&&GetMaster(oTarg)!=oMe)
|
|
AdjustAlignmentPartyProtected(oMe,ALIGNMENT_GOOD,1);
|
|
if (GetLocalInt(oTarg,"nIsVampire")!=TRUE&&GetRacialType(oTarg)!=RACIAL_TYPE_UNDEAD&&!GetLocalInt(oTarg,"bUndead"))
|
|
spellsCure(4, 0, 4, VFX_IMP_SUNSTRIKE, VFX_IMP_HEAD_HEAL, GetSpellId());
|
|
else
|
|
ApplyEffectToObject(DURATION_TYPE_INSTANT,eDmg,oTarg,1.0);
|
|
|
|
}
|