Canned Chili: Difference between revisions

From PZwiki
mNo edit summary
m (Remove 120px, minor fixes)
Line 1: Line 1:
{{languages|Canned Chili}}
{{Languages}}{{Header|Project Zomboid|Items|Food|Non-Perishable Food|Canned Food|type=Food|version=Version 41|incver=73}}{{Infobox food
{{header|Project Zomboid|Items|Food|Non-Perishable Food|Canned Food|type=Food|version=Version 41|incver=73}}{{Infobox food
|display_name=Canned Chili
|display_name=Canned Chili
|name_colour=Food
|name_colour=Food
|name_text_colour=Food
|name_text_colour=Food
|image=CannedChili_120px.png
|image=CannedChili.png
|alternate_image=CannedChiliOpen.png
|alternate_image=CannedChiliOpen.png
|alternate_link=
|alternate_link=
Line 50: Line 49:
==Crafting==
==Crafting==
{{Main|Cooking}}
{{Main|Cooking}}
===Evolved recipes===
===Evolved recipes===
Canned chili is a [[cooking]] [[Recipe Ingredients|ingredient]].
Canned chili is a [[cooking]] [[Recipe Ingredients|ingredient]].
Line 64: Line 64:


<div class="mw-collapsible mw-collapsed">
<div class="mw-collapsible mw-collapsed">
== Code ==
==Code==
<div class="mw-collapsible-content">'''''From items_food.txt (Project Zomboid directory/media/scripts/)'''''
<div class="mw-collapsible-content">'''''From items_food.txt (Project Zomboid directory/media/scripts/)'''''
''Canned Chili'' [[File:CannedChili.png|32px]]
''Canned Chili'' [[File:CannedChili.png|32px]]
Line 121: Line 121:
*[[Canned Tomato]]
*[[Canned Tomato]]


{{Navbox_food}}
{{Navbox food}}

Revision as of 02:40, 18 February 2023

Canned Chili
Canned Chili
Opened Canned Chili
General
Category Food
Encumbrance
Heavy Load
0.8
Days until stale 3 days
Days until rotten 2 days
Packaged Yes
Nutrition
Hunger
Hunger
-16
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.

Product XP gained Skill(s) Recipe Ingredient 1 Ingredient 2
Opened Canned Chili
Opened Canned Chili
0 XP none CannedChili.png
Canned Chili
(consumed)
CanOpener.png
Can Opener
(keep)

Template:Crafting table footer

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

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

Canned chili can often be found in kitchen counters.

Gallery

Code

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

Canned Chili CannedChili.png Retrieved: Build 41.73

    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,
	}

Opened Canned Chili CannedChiliOpen.png Retrieved: Build 41.73

    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,
	}

See also