Canned Chili: Difference between revisions

From PZwiki
(New infobox + new layout)
m (Automated Formatting)
(29 intermediate revisions by 6 users not shown)
Line 1: Line 1:
{{languages|Canned Chili}}
{{Header|Project Zomboid|Items|Food|Canned food}}
{{header|Project Zomboid|Items|Food|Non-Perishable Food|Canned Food|type=Food|version=Version 40|incver=14}}{{Infobox food
{{Page version|41.78.16}}
|display_name=Canned Chili
{{Infobox item
|name_colour=Food
|name=Canned Chili
|name_text_colour=Food
|model=TinnedChilli_Model.png
|image=CannedChili_120px.png
|icon=CannedChili.png
|alternate_image=CannedChiliOpen.png
|icon_name=Canned Chili
|alternate_link=
|model2=TinnedChilliOpen_Model.png
|alternate_name=Opened Canned Chili
|icon2=CannedChiliOpen.png
<!--GENERAL-->
|icon_name2=Opened Canned Chili
|category=Food
|category=Food
|weight=0.8
|weight=0.8
|days_fresh=3
|days_fresh=3
|days_rotten=5
|days_rotten=5
|packaged=True
|packaged=Yes
<!--NUTRITION-->
|hunger_change=-16
|hunger_change=-15
|thirst_change=
|calories=260
|calories=260
|lipids=7
|lipids=7
|proteins=16
|proteins=16
|carbohydrates=33
|carbohydrates=33
<!--TECHNICAL DETAILS-->
|item_id=Base.CannedChili<br>Base.CannedChiliOpen
|class_name=Base.CannedChili<br>Base.CannedChiliOpen
}}
}}'''Canned chili''' is a [[Food#Non-Perishable|non-perishable]] food [[item]].  
'''Canned chili''' (written as ''CHILLI'' on the model) is a non-perishable [[food]] [[Items|item]].


==Usage==
==Usage==
Canned chili can only be opened with a [[Can Opener|can opener]], and once opened become [[Food#Perishable|perishable]].  
Canned chili can only be opened with a [[Can Opener|can opener]], and once opened become [[Food#Perishable|perishable]].
{{Crafting/sandbox2
|opened_canned_chili
}}
 
===Consumable properties===
===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.
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.
{{Consumables2
{{Consumables
|image = CannedChiliOpen.png
|image = CannedChiliOpen.png
|hunger = -15
|hunger = -16
|thirst = 0
|thirst = 0
|unrotten hunger = -11
|unrotten hunger = -12
|unrotten boredom = +10
|unrotten boredom = +10
|unrotten unhappiness = +10
|unrotten unhappiness = +10
|unrotten thirst = 0
|unrotten thirst = 0
|rotten hunger = -6
|rotten hunger = -7
|rotten boredom = +20
|rotten boredom = +20
|rotten unhappiness = +20
|rotten unhappiness = +20
Line 46: Line 48:


==Crafting==
==Crafting==
===Cooking===
{{Main|Cooking}}
{{Main|Cooking}}
Canned chili can be used in various cooking recipes.
 
====Evolved recipes====
===Evolved recipes===
{{EvolvedRecipesForItem|stew=15|stirfry=15|roastedvegetables=15|ricepot=15|ricepan=15}}
Canned chili is a [[cooking]] [[Recipe ingredients|ingredient]].
{{EvolvedRecipesForItem|stew=16|stirfry=16|roastedvegetables=16|rice=16|taco=8|burrito=8|omelette=8|burger=8|sandwich=8}}


==Distribution==
==Distribution==
Canned chili is often found in [[Containers#Kitchen Counter|kitchen counters]].
Canned chili can often be found in [[Containers#Kitchen Counter|kitchen counters]].


== Code ==
==Trivia==
'''''From newitems.txt (Project Zomboid directory/media/scripts/)'''''
*The model feature incorrect name ''CHIL'''L'''I'', with double ''L''.


''Canned Chili'' [[File:CannedChili.png|32px]]
==Code==
{{Retrieved|version=40|incver=14}}
{{CodeBox|[[File:CannedChili.png]] {{ID|Base.CannedChili}}<br>
<pre> item CannedChili
{{CodeSnip
        Weight = 0.8,
  | lang = java
        Type = Food,
  | line = true
        DisplayName = Canned Chili,
  | start = 456
        Icon = CannedChili,
  | source = items_food.txt
        Carbohydrates = 33,
  | retrieved = true
        Proteins = 16,
  | version = 41.78.16
        Lipids = 7,
  | code =
        Calories = 260,
item CannedChili
        Packaged = TRUE,</pre>
{
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,
}
}}


''Opened Canned Chili'' [[File:CannedChiliOpen.png|32px]]
[[File:CannedChili.png]] {{ID|Base.CannedChiliOpen}}<br>
{{Retrieved|version=40|incver=14}}
{{CodeSnip
<pre> item CannedChiliOpen
  | lang = java
        Weight = 0.8,
  | line = true
        Type = Food,
  | start = 76
        DisplayName = Open Canned Chili,
  | source = items_food.txt
        Icon = CannedChiliOpen,
  | retrieved = true
        HungerChange = -15,
  | version = 41.78.16
        DaysFresh = 3,
  | code =
        DaysTotallyRotten = 5,
item CannedChiliOpen
        EvolvedRecipe   = Stew:15;Stir fry:15;Roasted Vegetables:15;RicePot:15;RicePan:15,
{
        Carbohydrates = 33,
DisplayName = Opened Canned Chili,
        Proteins = 16,
DisplayCategory = Food,
        Lipids = 7,
Type = Food,
        Calories = 260,
Weight = 0.8,
        Packaged = TRUE,
Icon = CannedChiliOpen,
        FoodType = Meat,
CannedFood = TRUE,
        EvolvedRecipeName = Canned Chili,
EatType = can,
        ReplaceOnUse    = TinCanEmpty,</pre>
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==
==See also==
Line 98: Line 135:
*[[Canned Tomato]]
*[[Canned Tomato]]


{{Navbox/Consumables}}
{{Navbox items|preserved_food}}
 
 
[[Category:Non-perishable food]]

Revision as of 07:12, 14 April 2024

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

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