Canned Chili

From PZwiki
Revision as of 14:06, 12 March 2022 by Vaileasys (talk | contribs) (updated to 41.68)
Canned Chili
Canned Chili
Canned Chili Opened Canned Chili
General
Category Food
Encumbrance
Heavy Load
0.8
Days until stale 3 days
Days until rotten 5 days
Packaged True
Nutrition
Hunger
Hunger
-15
Calories
Calories
260
Carbohydrates
Carbohydrates
33
Proteins
Proteins
16
Fat
Fat
7
Technical details
Item ID Base.CannedChili
Base.CannedChiliOpen

Canned chili is a non-perishable food item.

Usage

Canned chili can only be opened with a can opener, and once opened become perishable.

Consumable properties

Opened canned chili can be eaten, providing the player with some positive effects, however these will become negative the longer it's left to perish. Template:Consumables2

Crafting

Cooking

Main article: Cooking

Canned chili can be used in various cooking recipes.

Evolved recipes

Product Nutrition
Stew
Stew
15
Stir Fry
Stir Fry
15
Roasted Vegetables
Roasted Vegetables
15
Rice Pot/Saucepan
Rice Pot/Saucepan
15
Taco
Taco
15
Burrito
Burrito
15

Distribution

Canned chili is often found in kitchen counters.

Code

From items_food.txt (Project Zomboid directory/media/scripts/)

Canned Chili CannedChili.png Retrieved: Build 41.68

    item CannedChili
    {
        DisplayCategory = Food,
        Weight	=	0.8,
        Type	=	Food,
        DisplayName	=	Canned Chili,
        Icon	=	CannedChili,
        Carbohydrates = 33,
        Proteins = 16,
        Lipids = 7,
        Calories = 260,
        Packaged = TRUE,
        StaticModel = CanClosed,
        CannedFood = TRUE,
        WorldStaticModel = CanClosedChilli,
    }

Opened Canned Chili CannedChiliOpen.png Retrieved: Build 41.68

    item CannedChiliOpen
    {
        DisplayCategory = Food,
        Weight	=	0.8,
        Type	=	Food,
        DisplayName	=	Opened Canned Chili,
        Icon	=	CannedChiliOpen,
        HungerChange 		=		-15,
        DaysFresh			=	3,
        DaysTotallyRotten	=	5,
        EvolvedRecipe   =   Stew:15;Stir fry Griddle Pan:15;Stir fry:15;Roasted Vegetables:15;RicePot:15;RicePan:15;Taco:15;Burrito:15,
        Carbohydrates = 33,
        Proteins = 16,
        Lipids = 7,
        Calories = 260,
        Packaged = TRUE,
        FoodType = Meat,
        EvolvedRecipeName = Canned Chili,
        ReplaceOnUse    =   TinCanEmpty,
        StaticModel = CanOpen,
        EatType = can,
        CannedFood = TRUE,
        WorldStaticModel = CanOpenChilli,
    }

See also