PRC8/nwn/nwnprc/trunk/scripts/pnp_lich_alter.nss
Jaysyn904 6b1a173844 Added Alhoon template
Added Alhoon template & alter-self support changes by Thomas!#2605.  Updated release archive.
2024-08-06 14:18:04 -04:00

72 lines
2.5 KiB
Plaintext

//::///////////////////////////////////////////////
//:: Name Lich
//:: FileName pnp_lich_alter
//:: Copyright (c) 2001 Bioware Corp.
//:://////////////////////////////////////////////
/*
// alter self for the lich
*/
//:://////////////////////////////////////////////
//:: Created By: Shane Hennessy
//:: Created On:
//:://////////////////////////////////////////////
#include "pnp_shft_poly"
#include "prc_inc_template"
void main()
{
int iRace = GetRacialType(OBJECT_SELF);
if(GetPRCSwitch(PRC_LICH_ALTER_SELF_DISABLE))
{
FloatingTextStringOnCreature("Lich Alter Self has been disabled in this module.", OBJECT_SELF);
return;
}
StoreAppearance(OBJECT_SELF);
int nCurForm = GetAppearanceType(OBJECT_SELF);
int nPCForm = GetTrueForm(OBJECT_SELF);
// Switch to lich
if (nPCForm == nCurForm)
{
int nLichLevel = GetLevelByClass(CLASS_TYPE_LICH,OBJECT_SELF);
int nIsDemi = GetHasTemplate(TEMPLATE_DEMILICH,OBJECT_SELF);
if (iRace == RACIAL_TYPE_ILLITHID)
{
effect eFx = EffectVisualEffect(VFX_COM_CHUNK_RED_SMALL);
ApplyEffectToObject(DURATION_TYPE_TEMPORARY,eFx,OBJECT_SELF);
SetCreatureAppearanceType(OBJECT_SELF, APPEARANCE_TYPE_MINDFLAYER_ALHOON);
SetPortraitResRef(OBJECT_SELF, "mindalhoon");
SetPortraitId(OBJECT_SELF, 771);
}
else if (nLichLevel < 10 && !nIsDemi)
{
effect eFx = EffectVisualEffect(VFX_COM_CHUNK_RED_SMALL);
ApplyEffectToObject(DURATION_TYPE_TEMPORARY,eFx,OBJECT_SELF);
SetCreatureAppearanceType(OBJECT_SELF,APPEARANCE_TYPE_LICH);
SetPortraitResRef(OBJECT_SELF, "Lich");
SetPortraitId(OBJECT_SELF, 241);
}
else if (nLichLevel == 10 || nIsDemi)
{
effect eFx = EffectVisualEffect(VFX_COM_CHUNK_RED_LARGE);
ApplyEffectToObject(DURATION_TYPE_TEMPORARY,eFx,OBJECT_SELF);
SetCreatureAppearanceType(OBJECT_SELF,APPEARANCE_TYPE_DEMI_LICH); // DemiLich
SetPortraitResRef(OBJECT_SELF, "demilich");
SetPortraitId(OBJECT_SELF, 724);
}
}
else // Switch to PC
{
effect eFx = EffectVisualEffect(VFX_IMP_MAGICAL_VISION);
ApplyEffectToObject(DURATION_TYPE_TEMPORARY,eFx,OBJECT_SELF);
//re-use unshifter code from shifter instead
//this will also remove complexities with lich/shifter characters
SetShiftTrueForm(OBJECT_SELF);
//SetCreatureAppearanceType(OBJECT_SELF,nPCForm);
}
}