Jar of Radishes: Difference between revisions

From PZwiki
m (Vaileasys moved page Jar of Radishes to Jar of Radishes: Name fixed in build 41)
m (name update (ItemName_EN.txt) + code update to 41.50)
Line 1: Line 1:
{{languages|Jar of Red Radishes}}
{{languages|Jar of Radishes}}
{{header|Project Zomboid|Items|Food|Perishable Food|Vegetables|type=Food|version=Version 40|incver=7}}{{Infobox food
{{header|Project Zomboid|Items|Food|Perishable Food|Vegetables|type=Food|version=Version 41|incver=50}}{{Infobox food
|display_name=Jar of Red Radishes
|display_name=Jar of Radishes
|name_colour=Food
|name_colour=Food
|name_text_colour=Food
|name_text_colour=Food
Line 15: Line 15:
<!--TECHNICAL DETAILS-->
<!--TECHNICAL DETAILS-->
|class_name=Base.CannedRedRadish
|class_name=Base.CannedRedRadish
}}A '''jar of red radishes''' is a [[Food#Perishable|perishable]] food [[item]].  
}}A '''jar of radishes''' is a [[Food#Perishable|perishable]] food [[item]].  


==Usage==
==Usage==
Line 29: Line 29:
== Code ==
== Code ==
'''''From newitems.txt (Project Zomboid directory/media/scripts/)'''''
'''''From newitems.txt (Project Zomboid directory/media/scripts/)'''''
{{Retrieved|version=40|incver=7}}
{{Retrieved|version=41|incver=50}}
<pre> item CannedRedRadish
<pre>item CannedRedRadish
        Type = Food,
{
        DisplayName = Jar of Red Radishes,
Type = Food,
        Icon = JarBrown,
        DisplayName = Jar of Red Radishes,
      Weight = 0.5,
        Icon = JarBrown,
        DaysFresh = 60,
        Weight = 0.5,
        DaysTotallyRotten = 90,
        DaysFresh = 60,
        OnCooked           = CannedFood_OnCooked,
        DaysTotallyRotten = 90,
IsCookable         = TRUE,
        OnCooked = CannedFood_OnCooked,
        MinutesToBurn     = 120,
IsCookable = TRUE,
        MinutesToCook     = 60,</pre>
        MinutesToBurn = 120,
        MinutesToCook = 60,
        StaticModel = CanClosed,
}</pre>


==See also==
==See also==
* [[Items#Pickled foods|Pickled foods]]
* [[Items/Food#Pickled food|Pickled food]]
* [[Farming|Farming Guide]]
* [[Farming|Farming Guide]]


{{Navbox/Consumables}}
{{Navbox/Consumables}}

Revision as of 10:32, 28 February 2021

Jar of Radishes
Jar of Radishes
Radish
General
Category Food
Encumbrance
Heavy Load
0.5
Days until stale 60 days
Days until rotten 90 days
Technical details
Item ID Base.CannedRedRadish

A jar of radishes is a perishable food item.

Usage

A jar of red 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. Template:Cooking table header |- |
| | | ||
||
||
||
||
||
||
||
||
||
||
Template:Crafting table footer

Code

From newitems.txt (Project Zomboid directory/media/scripts/) Retrieved: Build 41.50

item CannedRedRadish
{
	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,
}

See also

Template:Navbox/Consumables