Canned Chili

From PZwiki
Project ZomboidItemsFoodCanned foodCanned Chili
UI Tick.png
This page has been revised for the current stable version (41.78.16).
Help by adding any missing content. [edit]
Canned Chili
TinnedChilli Model.png
TinnedChilliOpen Model.png
General
Category
Food
Encumbrance
Moodle Icon HeavyLoad.png
0.8
Properties
Packaged
Yes
Days fresh
3 days
Days until rotten
5 days
Nutrition
HungerMoodle Icon Hungry.png
-16
CaloriesCalories
260
CarbohydratesCarbohydrates
33
ProteinsProteins
16
FatFat
7
Technical
Item ID
Base.CannedChili
Base.CannedChiliOpen

Canned chili (written as CHILLI on the model) is a non-perishable food item.

Usage

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

Product Ingredients Tools Requirements Workstation XP
CannedChiliOpen.png
Opened Canned Chili
CannedChili.png Canned Chili ×1 CanOpener.png
Can Opener
none none none

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.

Fresh Stale Rotten

CannedChiliOpen.png
Hunger: -16


CannedChiliOpen.png
Hunger: -12
Boredom: +10
Unhappiness: +10

CannedChiliOpen.png
Hunger: -7
Boredom: +20
Unhappiness: +20
Dangerous, will cause sickness.

Crafting

Main article: Cooking

Evolved recipes

Canned chili is a cooking ingredient.

Product Nutrition
Stew
Stew
16
Stir Fry
Stir Fry
16
Roasted Vegetables
Roasted Vegetables
16
Sandwich
Sandwich
8
Burger
Burger
8
Rice Pot/Saucepan
Rice Pot/Saucepan
16
Taco
Taco
8
Burrito
Burrito
8
Omelette
Omelette
8

Distribution

The loot distributions can be found in the table(s) below.

CannedChili distribution Show / Hide
Effective chance calculations are based off of default loot settings, and median zombie density. The higher the density of zombies in an area, the higher the effective chance of an item spawning. Chance is also influenced by the lucky and unlucky traits.
Containers
Building/Room Container Effective chance
Bag_FoodCanned Bag_FoodCanned 23.28%
Bag_SurvivorBag Bag_SurvivorBag 23.28%
FoodCache1 FoodBox 62.98%
GroceryBag1 GroceryBag1 1.01%
GroceryBag3 GroceryBag3 6.41%
SafehouseLoot counter 23.28%
SurvivorCache1 SurvivorCrate 23.28%
SurvivorCache1 counter 23.28%
SurvivorCache2 SurvivorCrate 23.28%
SurvivorCache2 counter 23.28%
garagestorage crate 23.28%
generalstore crate 23.28%
generalstore shelves 23.28%
generalstorestorage crate 23.28%
generalstorestorage shelves 23.28%
gigamart crate 23.28%
gigamart shelves 23.28%
grocery crate 23.28%
grocery shelves 23.28%
grocery smallcrate 23.28%
grocerystorage crate 3.98%
grocerystorage metal_shelves 3.98%
grocerystorage smallcrate 3.98%
kitchen counter 23.28%
kitchen crate 23.28%
kitchen overhead 23.28%
kitchen shelves 23.28%
livingroom counter 23.28%
livingroom overhead 23.28%
storageunit crate 23.28%

Canned chili can often be found in kitchen counters.

Trivia

  • The model feature incorrect name CHILLI, with double L.

Code

Code icon.png Code snippet! This section contains source code from Project ZomboidShow / Hide

CannedChili.png Base.CannedChili
Source: ProjectZomboid\media\scripts\items_food.txt

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

CannedChili.png Base.CannedChiliOpen
Source: ProjectZomboid\media\scripts\items_food.txt

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

See also