Jar of Eggplants: Difference between revisions

From PZwiki
m (Replace link)
m (Automated Formatting)
 
(19 intermediate revisions by 6 users not shown)
Line 1: Line 1:
{{Languages}}{{Header|Project Zomboid|Items|Food|Perishable Food|Vegetables|type=Food|version=Version 41|incver=73}}{{Infobox food
{{Header|Project Zomboid|Items|Food|Pickled food}}
|display_name=Jar of Eggplants
{{Page version|41.78.16}}
|name_colour=Food
{{Infobox item
|name_text_colour=Food
|name=Jar of Eggplants
|image=JamPurple.png
|model=JarFoodEggplants_Model.png
|alternate_image=Eggplant.png
|icon=JamPurple.png
|alternate_link=Eggplant
|icon_name=Jar of Eggplants
|alternate_name=Eggplant
<!--GENERAL-->
<!--GENERAL-->
|category=Food
|category=Food
Line 15: Line 14:
|burn_minutes=60
|burn_minutes=60
<!--TECHNICAL DETAILS-->
<!--TECHNICAL DETAILS-->
|class_name=Base.CannedEggplant
|item_id=Base.CannedEggplant
}}'''Jar of eggplants''' is a [[Food#Perishable|perishable]] food [[item]].  
}}
A '''jar of eggplants''' is a perishable [[food]] [[Items|item]].


==Usage==
==Usage==
Jar of eggplants is used to preserve [[eggplant]] longer than their standard 5 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 eggplants is used to preserve [[eggplant]] longer than their standard 5 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.
 
Eggplant cannot be eaten directly from the jar, therefore the jar must first be opened, returning the eggplant, with their usual freshness.
Eggplant cannot be eaten directly from the jar, therefore the jar must first be opened, returning the eggplant, with their usual freshness.


==Crafting==
==Crafting==
Eggplant can be pickled to preserve their lifespan by using [[sugar]] and [[vinegar]].
Eggplant can be pickled to preserve their lifespan by using [[sugar]] and [[vinegar]].
{{Crafting header|ing=6}}
{{Crafting/sandbox2
{{Crafting cooking|026|ing=6}}
|jar_of_eggplants
|}
}}
 
==Gallery==
<gallery>
JarFoodEggplants_Model.png|Jar of eggplants model when placed in the world.
</gallery>


==Code==
==Code==
'''''From newitems.txt (Project Zomboid directory/media/scripts/)'''''
{{CodeBox
{{Retrieved|version=41|incver=73}}
| {{CodeSnip
<pre>
  | lang = java
item CannedEggplant
  | line = true
  | start = 2758
  | source = newitems.txt
  | retrieved = true
  | version = 41.78.16
  | code =
item CannedEggplant
     {
     {
         DisplayCategory         = Food,
         DisplayCategory = Food,
         Type = Food,
         Type = Food,
         DisplayName = Jar of Eggplants,
         DisplayName = Jar of Eggplants,
         Icon = JamPurple,
         Icon = JamPurple,
         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       = JarFoodEggplants_Ground,
         WorldStaticModel = JarFoodEggplants_Ground,
     }
     }
</pre>
}}
}}


==See also==
==See also==
Line 59: Line 62:
*[[Farming]]
*[[Farming]]


{{Navbox food}}
{{Navbox items|preserved_food}}
 
 
[[Category:Perishable food]]
[[Category:Vegetables]]

Latest revision as of 09:24, 14 April 2024

Project ZomboidItemsFoodPickled foodJar of Eggplants
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 Eggplants
JarFoodEggplants 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.CannedEggplant

A jar of eggplants is a perishable food item.

Usage

Jar of eggplants is used to preserve eggplant longer than their standard 5 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.

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

Crafting

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

Product Ingredients Tools Requirements Workstation XP
JamPurple.png
Jar of Eggplants
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
Eggplant.png Eggplant ×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 CannedEggplant
    {
        DisplayCategory = Food,
        Type				=		Food,
        DisplayName			=		Jar of Eggplants,
        Icon				=		JamPurple,
        Weight				=		0.5,
        DaysFresh 			=		60,
        DaysTotallyRotten 	=	 	90,
        OnCooked            =       CannedFood_OnCooked,
		IsCookable	        =	    TRUE,
        MinutesToBurn	    =	    120,
        MinutesToCook	    =	    60,
        StaticModel = CanClosed,
        WorldStaticModel = JarFoodEggplants_Ground,
    }

See also