Shargast_PRC8/_module/Chapter 1/nss/cnr_ta_cowchic_f.nss
Jaysyn904 66a0a3e043 Initial commit
Initial commit.
2024-08-03 14:13:18 -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);
}