14 lines
374 B
Plaintext
14 lines
374 B
Plaintext
// vamp_ck_cund
|
|
#include "prc_inc_racial"
|
|
|
|
int StartingConditional()
|
|
{
|
|
object oPC=GetPCSpeaker();
|
|
int nXP=GetLocalInt(oPC,"nVampireXP");
|
|
int nLevel=1+(nXP/5000);
|
|
int nBlood=GetLocalInt(oPC,"nBloodPool");
|
|
object oTarget=GetLocalObject(oPC,"oTarget");
|
|
if (nBlood>39&&nLevel>1&&MyPRCGetRacialType(oTarget)==RACIAL_TYPE_UNDEAD) return TRUE;
|
|
return FALSE;
|
|
}
|