Canned Beans: Difference between revisions

From PZwiki
(Undo revision 116063 by Alluseri (talk))
Tag: Undo
m (Minor)
Line 1: Line 1:
{{Languages}}{{Header|Project Zomboid|Items|Food|Non-Perishable Food|Canned Food|type=Food|version=Version 41|incver=73}}{{Infobox food
{{Languages}}
{{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
Line 37: Line 39:
===Consumable properties===
===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.
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.
{{Consumables2
{{Consumables
|image = BeansOpen.png
|image = BeansOpen.png
|hunger = -24
|hunger = -24
Line 69: Line 71:
==Gallery==
==Gallery==
<gallery>
<gallery>
BeansClosed_Model.png|Model for: [[File:Beans.png]]
BeansClosed Model.png|Model for: [[File:Beans.png]]
BeansOpen_Model.png|Model for: [[File:BeansOpen.png]]
BeansOpen Model.png|Model for: [[File:BeansOpen.png]]
</gallery>
</gallery>



Revision as of 10:46, 27 August 2023

Canned Beans
Canned Beans
Canned Beans Opened Canned Beans
General
Category Food
Encumbrance
Heavy Load
0.8
Days until stale 2 days
Days until rotten 4 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)

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.

Fresh Stale Rotten

BeansOpen.png
Hunger: -24

Unhappiness: +10

BeansOpen.png
Hunger: -18
Boredom: +10
Unhappiness: +20

BeansOpen.png
Hunger: -10
Boredom: +20
Unhappiness: +30
Dangerous, will cause sickness.

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