Canned Beans: Difference between revisions

From PZwiki
No edit summary
m (Remove 120px, minor fixes)
Line 1: Line 1:
{{languages|Canned Beans}}
{{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 Beans
|display_name=Canned Beans
|name_colour=Food
|name_colour=Food
|name_text_colour=Food
|name_text_colour=Food
|image=Beans_120px.png
|image=Beans.png
|alternate_image=BeansOpen.png
|alternate_image=BeansOpen.png
|alternate_name=Opened Canned Beans
|alternate_name=Opened Canned Beans
Line 51: Line 50:
== Crafting ==
== Crafting ==
{{Main|Cooking}}
{{Main|Cooking}}
===What it can make===
===What it can make===
{{Crafting header|ing=3}}
{{Crafting header|ing=3}}
Line 56: Line 56:
|}
|}


=== Evolved recipes ===
===Evolved recipes===
Canned beans is a [[cooking]] [[Recipe Ingredients|ingredient]].
Canned beans is a [[cooking]] [[Recipe Ingredients|ingredient]].
{{EvolvedRecipesForItem|Omelette=8|Soup=24|Stew=24|Rice=24|Sandwich=8|Toast=8|Salad=8|}}
{{EvolvedRecipesForItem|Omelette=8|Soup=24|Stew=24|Rice=24|Sandwich=8|Toast=8|Salad=8|}}
Line 70: Line 70:


<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 Beans'' [[File:Beans.png|32px]]
''Canned Beans'' [[File:Beans.png|32px]]

Revision as of 00:41, 18 February 2023

Canned Beans
Canned Beans
Opened Canned Beans
General
Category Food
Encumbrance
Heavy Load
0.8
Days until stale 2 days
Days until rotten 2 days
Packaged Yes
Nutrition
Hunger
Hunger
-24
Calories
Calories
170
Carbohydrates
Carbohydrates
33
Proteins
Proteins
7
Fat
Fat
1
Effect
Unhappiness
Unhappiness
+10
Technical details
Item ID Base.TinnedBeans
Base.OpenBeans

Canned beans is a non-perishable food item.

Usage

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

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

Template:Crafting table footer

Consumable properties

Opened canned beans 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

What it can make

Product XP gained Skill(s) Recipe Ingredient 1 Ingredient 2 Ingredient 3
Bowl of Beans (Uncooked)
Bowl of Beans (Uncooked)
0.75 Cooking none CanOpener.png
Can Opener
(keep)
Bowl.png
Bowl
(consumed)
Beans.png
Canned Beans
(consumed)

Evolved recipes

Canned beans is a cooking ingredient.

Product Nutrition
Soup
Soup
24
Stew
Stew
24
Salad
Salad
8
Sandwich
Sandwich
8
Rice Pot/Saucepan
Rice Pot/Saucepan
24
Omelette
Omelette
8
Toast
Toast
8

Distribution

Canned beans can often be found in kitchen counters.

Gallery

Code

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

Canned Beans Beans.png Retrieved: Build 41.73

    item TinnedBeans
	{
		DisplayName = Canned Beans,
		DisplayCategory = Food,
		Type = Food,
		Weight = 0.8,
		Icon = Beans,
		CannedFood = TRUE,
		CantEat = TRUE,
		Packaged = TRUE,
		Calories = 170,
		Carbohydrates = 33,
		Lipids = 1,
		Proteins = 7,
		StaticModel = CanClosed,
		WorldStaticModel = CanClosed,
	}

Opened Canned Beans BeansOpen.png Retrieved: Build 41.73

    item OpenBeans
	{
		DisplayName = Opened Canned Beans,
		DisplayCategory = Food,
		Type = Food,
		Weight = 0.8,
		Icon = BeansOpen,
		EvolvedRecipe = Omelette:8;Soup:24;Stew:24;RicePot:24;RicePan:24;Sandwich:8;Sandwich Baguette:8;Toast:8;Salad:8,
		EvolvedRecipeName = Bean,
		FoodType = Bean,
		CannedFood = TRUE,
		EatType = can,
		Packaged = TRUE,
		ReplaceOnUse = TinCanEmpty,
		DaysFresh = 2,
		DaysTotallyRotten = 4,
		HungerChange = -24,
		UnhappyChange = 10,
		Calories = 170,
		Carbohydrates = 33,
		Lipids = 1,
		Proteins = 7,
		StaticModel = CanOpen,
		WorldStaticModel = CanOpen,
	}

See also