LoD_PRC8/_module/nss/cnr_ta_cowchic_f.nss
Jaysyn904 94990edc60 Initial Upload
Initial Upload
2023-09-21 21:20:34 -04:00

27 lines
620 B
Plaintext

/////////////////////////////////////////////////////////
//
// Craftable Natural Resources (CNR) by Festyx
//
// Name: cnr_ta_cowchic_f
//
// Desc: Checks if the the animal has eaten enough
// to produce food.
//
// Author: David Bobeck 24Dec02
//
/////////////////////////////////////////////////////////
int StartingConditional()
{
if (GetTag(OBJECT_SELF) == "cnrChicken")
{
SetCustomToken(22021, "an egg");
}
if (GetTag(OBJECT_SELF) == "cnrCow")
{
SetCustomToken(22021, "some milk");
}
int nFoodPoints = GetLocalInt(OBJECT_SELF, "nCnrFoodPoints");
return (nFoodPoints >= 6);
}