Files
Anphillia_PRC8/_module/nss/cnr_ta_cowchic_f.nss
Jaysyn904 28cdb617b3 Initial commit
Adding all of the current content for Anphillia Unlimited.
2024-01-04 07:49:38 -05: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);
}