Canned Beans: Difference between revisions

From PZwiki
(Omitted Happiness Penalty in code for eating beans out of can, and happiness gained eating out of bowl.)
(Update of NavBar.)
Line 3: Line 3:
<div class="header" style="margin: 5px; align: right; background: #CEF2E0; padding: 13px; text-align: left; font-size: 100%; color:#000000; border: 1px solid #A3BFB1"> <!-- Code for Background Colour -->
<div class="header" style="margin: 5px; align: right; background: #CEF2E0; padding: 13px; text-align: left; font-size: 100%; color:#000000; border: 1px solid #A3BFB1"> <!-- Code for Background Colour -->
<div style="float: right;background: #CEF2E0;border: 1px solid #A3BFB1; margin: -30pt -10.5pt">    '''Page Updated @ Version: 34.28'''    </div><!-- Code for Version Tag at top -->
<div style="float: right;background: #CEF2E0;border: 1px solid #A3BFB1; margin: -30pt -10.5pt">    '''Page Updated @ Version: 34.28'''    </div><!-- Code for Version Tag at top -->
<div style="float: left;background: #CEF2E0;border: 1px solid #A3BFB1; margin: -30pt -10.5pt">   '''Navigation''' - [[ Main_Page|Index]] -> [[:Category:Food|Food]] -> [[:Category:Non-Perishable_Food|Non Perishable Foods]] -> [[Canned_Beans|Canned Beans]]   </div><!-- Code for Navigation Bar at top, special blank char's before '''Navigation''' to give space -->
<div style="float: left;background: #CEF2E0;border: 1px solid #A3BFB1; margin: -30pt -10.5pt">   '''Navigation''' - [[:Category:Main|Main Index]] -> [[:Category:The_Game_World|The Game World]] -> [[:Category:Items|Items]] -> [[:Category:Consumables|Consumables]] -> [[:Category:Food|Food]] -> [[:Category:Non-Perishable_Food|Non Perishable Foods]] -> [[{{PAGENAME}}]]   </div><!-- Code for Navigation Bar at top, special blank char's before '''Navigation''' to give space -->
{{Consumables
{{Consumables
|image = Beans.png
|image = Beans.png

Revision as of 19:46, 29 August 2016


Page Updated @ Version: 34.28

Tinned Beans is a non-perishable food item which is often found in kitchen cupboards. It is a non-perishable item while it is sealed.
Canned Beans can only be opened with a can opener, and once opened it becomes a perishable item. A opened can of Canned Beans takes two in-game days to go stale, and four in-game days to rot.


Nutritional Information

Template:Consumables2












It's Nutritional Values are as follows:
Carbohydrates = 33
Proteins = 7
Lipids = 1
Calories = 170

Evolved Recipes

Evolved Recipes
Name Hunger Added Happiness Added
File:Bowl of Beans.png
Bowl
+30 +10

Code


Sealed Can

	item TinnedBeans
	Weight		= 0.8,
	Type		= Food,
	DisplayName	= Canned Beans,
	Icon		= Beans,
        Carbohydrates 	= 33,
        Proteins 	= 7,
        Lipids 		= 1,
        Calories 	= 170,
        Packaged 	= TRUE,
    

Opened Can

	item OpenBeans
	HungerChange		= -30,
	Weight			= 0.8,
	Type			= Food,
	DaysTotallyRotten	= 4,
	UnhappyChange		= 10,
	DisplayName		= Open Canned Beans,
	Icon			= BeansOpen,
	DaysFresh		= 2,
        Carbohydrates 		= 33,
        Proteins 		= 7,
        Lipids 			= 1,
        Calories 		= 170,
        Packaged 		= TRUE,
    

See Also

Template:Navbox/Consumables