Canned Beans

From PZwiki
Revision as of 04:06, 26 March 2022 by Alluseri (talk | contribs) (PZ Updater automated execution(task: deploy ReLookup, eid: d8ae1ae5de74a0ec4b2dfd99fd6c7638))
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 True
Nutrition
Hunger
Hunger
-25
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 are a non-perishable food item.

Usage

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

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

Cooking

Main article: Cooking
Product XP gained Skill(s) Recipe Ingredient 1 Ingredient 2 Ingredient 3
Bowl of Beans
Bowl of Beans x1
none Can Opener
Can Opener x1
Canned Beans
Canned Beans x1
(consumed)
Bowl
Bowl x1
(consumed)


Distribution

Canned beans are usually found in kitchen counters.

Gallery

Code

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

Canned Beans Beans.png Retrieved: Build 41.68

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

Opened Canned Beans BeansOpen.png Retrieved: Build 41.68

    item OpenBeans
	{
		DisplayCategory = Food,
		HungerChange	=	-25,
		Weight	=	0.8,
		Type	=	Food,
		DaysTotallyRotten	=	4,
		UnhappyChange	=	10,
		DisplayName	=	Opened Canned Beans,
		Icon	=	BeansOpen,
		DaysFresh	=	2,
        	Carbohydrates = 33,
        	Proteins = 7,
        	Lipids = 1,
        	Calories = 170,
        	Packaged = TRUE,
        	ReplaceOnUse    =   TinCanEmpty,
        	StaticModel = CanOpen,
        	EatType = can,
        	CannedFood = TRUE,
        	WorldStaticModel = CanOpen,
	}

See also

Template:Navbox/Consumables