Jar of Potatoes: Difference between revisions

From PZwiki
(updated to 41.68)
m (Automated Formatting)
 
(22 intermediate revisions by 7 users not shown)
Line 1: Line 1:
{{languages}}
{{Header|Project Zomboid|Items|Food|Pickled food}}
{{header|Project Zomboid|Items|Food|Perishable Food|Vegetables|type=Food|version=Version 41|incver=68}}{{Infobox food
{{Page version|41.78.16}}
|display_name=Jar of Potatoes
{{Infobox item
|name_colour=Food
|name=Jar of Potatoes
|name_text_colour=Food
|model=JarFoodPotatoes_Model.png
|image=JarFoodPotatoes_Model.png
|icon=JarWhite.png
|image_width=300px
|icon_name=Jar of Potatoes
|alternate_image=JarWhite.png
|alternate_link=
|alternate_name=Jar of Potatoes
|alternate_image2=Potato.png
|alternate_link2=Potato
|alternate_name2=Potato
<!--GENERAL-->
<!--GENERAL-->
|category=Food
|category=Food
|weight=0.5
|weight=0.5
|days_fresh=60
|days_fresh=60
|days_rotten=90
|days_rotten=30
|cook_minutes=60
|cook_minutes=60
|burn_minutes=120
|burn_minutes=60
<!--TECHNICAL DETAILS-->
<!--TECHNICAL DETAILS-->
|class_name=Base.CannedPotato
|item_id=Base.CannedPotato
}}A '''jar of potatoes''' is a [[Food#Perishable|perishable]] food [[item]].  
}}
A '''jar of potatoes''' is a perishable [[food]] [[Items|item]].


==Usage==
==Usage==
A jar of potatoes is used to preserve [[potato]] longer than its standard 14 days of freshness. After jarring, it is necessary to cook the jar of food in a [[heat source]]. Otherwise, the food will rot as fast as if it were not jarred.<br>
Jar of potatoes is used to preserve [[potato]] longer than its standard 14 days of freshness. After jarring, it is necessary to cook the jar of food in a [[heat source]]. Otherwise, the food will rot as fast as if it were not jarred.
 
Potatoes cannot be eaten directly from the jar, therefore the jar must first be opened, returning the potatoes, with their usual freshness.
Potatoes cannot be eaten directly from the jar, therefore the jar must first be opened, returning the potatoes, with their usual freshness.


== Crafting ==
==Crafting==
Potatoes can be pickled to preserve their lifespan by using [[sugar]] and [[vinegar]].
Potatoes can be pickled to preserve their lifespan by using [[sugar]] and [[vinegar]].
{{Crafting header|ing=6}}
{{Crafting/sandbox2
{{Crafting cooking|028|ing=6}}
|jar_of_potatoes
|}
}}


== Code ==
==Code==
'''''From newitems.txt (Project Zomboid directory/media/scripts/)'''''
{{CodeBox
{{Retrieved|version=41|incver=68}}
| {{CodeSnip
<pre> item CannedPotato
  | lang = java
  | line = true
  | start = 2741
  | source = newitems.txt
  | retrieved = true
  | version = 41.78.16
  | code =
item CannedPotato
     {
     {
         DisplayCategory = Food,
         DisplayCategory = Food,
Line 46: Line 49:
         DaysTotallyRotten = 90,
         DaysTotallyRotten = 90,
         OnCooked            =      CannedFood_OnCooked,
         OnCooked            =      CannedFood_OnCooked,
IsCookable         =     TRUE,
IsCookable         =     TRUE,
         MinutesToBurn     =     120,
         MinutesToBurn     =     120,
         MinutesToCook     =     60,
         MinutesToCook     =     60,
         StaticModel = CanClosed,
         StaticModel = CanClosed,
         WorldStaticModel = JarFoodPotatoes_Ground,
         WorldStaticModel = JarFoodPotatoes_Ground,
     }</pre>
     }
}}
}}


==See also==
==See also==
* [[Items/Food#Pickled food|Pickled foods]]
*[[Food#Pickled food|Pickled foods]]
* [[Farming|Farming Guide]]
*[[Farming]]
 
{{Navbox items|preserved_food}}
 


{{Navbox_food}}
[[Category:Perishable food]]
[[Category:Vegetables]]

Latest revision as of 09:24, 14 April 2024

Project ZomboidItemsFoodPickled foodJar of Potatoes
UI Tick.png
This page has been revised for the current stable version (41.78.16).
Help by adding any missing content. [edit]
Jar of Potatoes
JarFoodPotatoes Model.png
General
Category
Food
Encumbrance
Moodle Icon HeavyLoad.png
0.5
Properties
Days fresh
60 days
Days until rotten
30 days
Cooking
Time until cooked
60 minutes
Time until burned
60 minutes
Technical
Item ID
Base.CannedPotato

A jar of potatoes is a perishable food item.

Usage

Jar of potatoes is used to preserve potato longer than its standard 14 days of freshness. After jarring, it is necessary to cook the jar of food in a heat source. Otherwise, the food will rot as fast as if it were not jarred.

Potatoes cannot be eaten directly from the jar, therefore the jar must first be opened, returning the potatoes, with their usual freshness.

Crafting

Potatoes can be pickled to preserve their lifespan by using sugar and vinegar.

Product Ingredients Tools Requirements Workstation XP
JarWhite.png
Jar of Potatoes
One of:
SugarBrown.png Brown Sugar ×1
Sugar.png Sugar ×1
SugarPacket.png Sugar Packet ×1
Each of:
JarEmpty2.png Jar ×1
JarLid.png Jar Lid ×1
Potato.png Potato ×5
WaterDrop.png Water ×10 unit(s)
Vinegar.png Vinegar ×2 unit(s)
none none none 2.5 Cooking

Code

Code icon.png Code snippet! This section contains source code from Project ZomboidShow / Hide

Source: ProjectZomboid\media\scripts\newitems.txt

Retrieved: Build 41.78.16
item CannedPotato
    {
        DisplayCategory = Food,
        Type				=		Food,
        DisplayName			=		Jar of Potatoes,
        Icon				=		JarWhite,
        Weight				=		0.5,
        DaysFresh 			=		60,
        DaysTotallyRotten 	=	 	90,
        OnCooked            =       CannedFood_OnCooked,
		IsCookable	        =	    TRUE,
        MinutesToBurn	    =	    120,
        MinutesToCook	    =	    60,
        StaticModel = CanClosed,
        WorldStaticModel = JarFoodPotatoes_Ground,
    }

See also