16 lines
358 B
Plaintext
16 lines
358 B
Plaintext
|
#include "jw_smith_copy"
|
||
|
|
||
|
int StartingConditional()
|
||
|
{
|
||
|
int iResult=FALSE;
|
||
|
object oPC=GetPCSpeaker();
|
||
|
object oArmour=GetItemInSlot(INVENTORY_SLOT_CHEST,oPC);
|
||
|
itemproperty iAdd=ItemPropertyDamageResistance(IP_CONST_DAMAGETYPE_ACID,IP_CONST_DAMAGERESIST_5);
|
||
|
if (IPGetItemHasProperty(oArmour,iAdd,-1))
|
||
|
{
|
||
|
iResult=TRUE;
|
||
|
}
|
||
|
|
||
|
return iResult;
|
||
|
}
|