Jar of Radishes: Difference between revisions

From PZwiki
m (Infobox fix)
m (Automated Formatting)
 
(10 intermediate revisions by 3 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.73}}
{{Infobox item
{{Infobox item
|name=Jar of Radishes
|name=Jar of Radishes
Line 7: Line 6:
|icon=JarBrown.png
|icon=JarBrown.png
|icon_name=Jar of Radishes
|icon_name=Jar of Radishes
|icon2=Radish.png
|icon_name2=Radish
<!--GENERAL-->
<!--GENERAL-->
|category=Food
|category=Food
Line 18: Line 15:
<!--TECHNICAL DETAILS-->
<!--TECHNICAL DETAILS-->
|item_id=Base.CannedRedRadish
|item_id=Base.CannedRedRadish
}}A '''jar of radishes''' is a [[Food#Perishable|perishable]] food [[item]].  
}}
A '''jar of radishes''' is a perishable [[food]] [[Items|item]].


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


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


==Code==
==Code==
Line 34: Line 33:
| {{CodeSnip
| {{CodeSnip
   | lang = java
   | lang = java
   | line = false
   | line = true
  | start = 2792
   | source = newitems.txt
   | source = newitems.txt
   | retrieved = true
   | retrieved = true
   | version = 41
   | version = 41.78.16
  | incver = 73
   | code =
   | code =
item CannedRedRadish
item CannedRedRadish
{
    {
  DisplayCategory         = Food,
        DisplayCategory = Food,
  Type                   = Food,
        Type = Food,
  DisplayName             = Jar of Red Radishes,
        DisplayName = Jar of Red Radishes,
  Icon                   = JarBrown,
        Icon = JarBrown,
  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       = JarFoodRadish_Ground,
        WorldStaticModel = JarFoodRadish_Ground,
}
    }
  }}
}}
}}
}}


Line 63: 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:25, 14 April 2024

Project ZomboidItemsFoodPickled foodJar of Radishes
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 Radishes
JarFoodRadish 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.CannedRedRadish

A jar of radishes is a perishable food item.

Usage

Jar of radishes is used to preserve radishes longer than their standard 3 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.

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

Crafting

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

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

See also