Jaysyn904 e5b3f6ad61 Finished PRC8 integration
Finished PRC8 integration.  Moved creature abilities to top hak.  Setup tooling.  Created release archive
2024-03-12 21:27:23 -04:00

19 lines
410 B
Plaintext

//::///////////////////////////////////////////////
//:: FileName frost_elf
//:://////////////////////////////////////////////
//:://////////////////////////////////////////////
#include "prc_inc_racial"
//:: Returns TRUE if PC is an elf
int StartingConditional()
{
object oPC = GetPCSpeaker();
if (!(MyPRCGetRacialType(oPC) == RACIAL_TYPE_ELF))
{
return FALSE;
}
return TRUE;
}