Canned Beans: Difference between revisions

From PZwiki
(added gallery: open can of beans)
m (Fixed some grammar issues :))
Line 32: Line 32:


==Usage==
==Usage==
Canned beans can only be opened with a [[Can Opener|can opener]], and once opened become [[Food#Perishable|perishable]].  
Canned beans can only be opened with a [[Can Opener|can opener]], and once opened they become [[Food#Perishable|perishable]].  
===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 effects will become negative once the rotting process has begun.
{{Consumables2
{{Consumables2
|image = BeansOpen.png
|image = BeansOpen.png
Line 58: Line 58:


==Distribution==
==Distribution==
Canned beans is often found in [[Containers#Kitchen Counter|kitchen counters]].
Canned beans are usually found in [[Containers#Kitchen Counter|kitchen counters]].


==Gallery==
==Gallery==

Revision as of 11:22, 14 March 2022

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

Template:Cooking table header |- |
| | | ||
||
||
||
||
||
||
||
||
||
||
Template:Crafting table footer

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