Jar of Potatoes: Difference between revisions

From PZwiki
(Version bump, clear, remove second icon)
m (Automated Formatting)
 
(10 intermediate revisions by 2 users not shown)
Line 1: Line 1:
{{Languages}}
{{Header|Project Zomboid|Items|Food|Pickled food}}
{{header/sandbox2|Project Zomboid|Items|Food|Pickled food}}
{{Page version|41.78.16}}
{{page version|41.78.16}}
{{Infobox item
{{Infobox item
|name=Jar of Potatoes
|name=Jar of Potatoes
Line 16: Line 15:
<!--TECHNICAL DETAILS-->
<!--TECHNICAL DETAILS-->
|item_id=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==
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.


{{clear}}
==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==
Line 33: Line 33:
| {{CodeSnip
| {{CodeSnip
   | lang = java
   | lang = java
   | line = false
   | line = true
  | start = 2741
   | source = newitems.txt
   | source = newitems.txt
   | retrieved = true
   | retrieved = true
   | version = 41
   | version = 41.78.16
  | incver = 73
   | code =
   | code =
item CannedPotato
item CannedPotato
{
    {
  DisplayCategory         = Food,
        DisplayCategory = Food,
  Type                   = Food,
        Type = Food,
  DisplayName             = Jar of Potatoes,
        DisplayName = Jar of Potatoes,
  Icon                   = JarWhite,
        Icon = JarWhite,
  Weight                 = 0.5,
        Weight = 0.5,
  DaysFresh               = 60,
        DaysFresh = 60,
  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,
}
    }
  }}
}}
}}
}}


Line 62: Line 62:
*[[Farming]]
*[[Farming]]


{{Navbox food}}
{{Navbox items|preserved_food}}
 
 
[[Category:Perishable food]]
[[Category:Perishable food]]
[[Category:Vegetables]]
[[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