Canned Beans

From PZwiki
Revision as of 20:29, 3 October 2022 by Kienlabadao (talk | contribs)
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
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 Carrots
Opened Canned Carrots
0 XP none CannedCarrots.png
Canned Carrots
(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 effects will become negative once the rotting process has begun. 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 is often 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