Jujubes: Difference between revisions

From PZwiki
m (Automated Formatting)
(29 intermediate revisions by 6 users not shown)
Line 1: Line 1:
== Code ==
{{Header|Project Zomboid|Items|Food|Sweets}}
'''''From items_food.txt (Project Zomboid directory/media/scripts/)'''''
{{Page version|41.78.16}}
{{Retrieved|version=41|incver=73}}
{{Infobox item
<pre>    item Jujubes
|name=Jujubes
|model=JujuJubes_JellyBeans_Model.png
|icon=Jujujubes.png
<!--GENERAL-->
|category=Food
|weight=0.1
<!--NUTRITION-->
|hunger_change=-5
|calories=40
|lipids=0
|proteins=0
|carbohydrates=10
<!--EFFECT-->
|unhappy_change=-10
 
<!--TECHNICAL DETAILS-->
|item_id=Base.Jujubes
}}
'''Jujubes''' are a non-perishable [[food]] [[Items|item]].
 
==Usage==
Jujubes can be eaten, providing the player with some positive effects, including reducing [[Unhappy|unhappiness]].
 
==Crafting==
{{Main|Cooking}}
 
===Evolved recipes===
Jujubes are [[cooking]] [[Recipe ingredients|ingredient]].
{{EvolvedRecipesForItem|coneicecream=5||cake=5|}}
 
==Distribution==
The loot distributions can be found in the table(s) below.
 
{| class="mw-collapsible mw-collapsed wikitable theme-red" data-expandtext="{{int:show}}" data-collapsetext="{{int:hide}}" style="text-align:center; min-width:24em;"
! colspan="4" | Containers
|-
! Building/Room
! Container
! style="width: 3.2em;" | Rolls
! style="width: 3.2em;" | Chance
|-
|artstore
|[[shelves]]
|4
|1
|-
|bandkitchen
|[[counter]]
|4
|1
|-
|candystorage
|[[metal_shelves]]
|4
|1
|-
|candystore
|[[counter]]
|4
|1
|-
|gasstorage
|[[crate]]
|4
|1
|-
|grocerystorage
|[[crate]]
|4
|1
|}
Jujubes can be found in grocery stores, candy stores, gas stations and theaters.
 
==Code==
{{CodeBox
| {{CodeSnip
  | lang = java
  | line = true
  | start = 9297
  | source = items_food.txt
  | retrieved = true
  | version = 41.78.16
  | code =
item Jujubes
{
{
DisplayName = Jujubes,
DisplayName = Jujubes,
Line 8: Line 91:
Type = Food,
Type = Food,
Weight = 0.1,
Weight = 0.1,
Icon = Jujubes,
Icon = Jujujubes,
EvolvedRecipe = Cake:5;
EvolvedRecipe = Cake:5;ConeIcecream:5,
FoodType = Candy,
FoodType = Candy,
HungerChange = -5,
HungerChange = -5,
Line 17: Line 100:
Lipids = 0.5,
Lipids = 0.5,
Proteins = 0,
Proteins = 0,
EvolvedRecipeName = Jujubes,
EvolvedRecipeName = Jujube,
}</pre>
WorldStaticModel = Jujubes_Ground,
}
}}
}}


{{Navbox_food}}
==See also==
*[[Rock Candy]]
*[[Hard Candies]]
*[[Modjeska]]
*[[Gummy Bears]]


== Crafting ==
{{Navbox items|miscellaneous_food}}
{{Main|Cooking}}
 
=== Evolved recipes ===
 
{{EvolvedRecipesForItem|Cake=5|
[[Category:Non-perishable food]]

Revision as of 09:28, 14 April 2024

UI Tick.png
This page has been revised for the current stable version (41.78.16).
Help by adding any missing content. [edit]
Jujubes
JujuJubes JellyBeans Model.png
General
Category
Food
Encumbrance
Moodle Icon HeavyLoad.png
0.1
Nutrition
HungerMoodle Icon Hungry.png
-5
CaloriesCalories
40
CarbohydratesCarbohydrates
10
ProteinsProteins
0
FatFat
0
Effect
UnhappinessMoodle Icon Unhappy.png
-10
Technical
Item ID
Base.Jujubes

Jujubes are a non-perishable food item.

Usage

Jujubes can be eaten, providing the player with some positive effects, including reducing unhappiness.

Crafting

Main article: Cooking

Evolved recipes

Jujubes are cooking ingredient.

Product Nutrition
Cake
Cake
5
Ice Cream Cone
Ice Cream Cone
5

Distribution

The loot distributions can be found in the table(s) below.

Containers
Building/Room Container Rolls Chance
artstore shelves 4 1
bandkitchen counter 4 1
candystorage metal_shelves 4 1
candystore counter 4 1
gasstorage crate 4 1
grocerystorage crate 4 1

Jujubes can be found in grocery stores, candy stores, gas stations and theaters.

Code

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

Source: ProjectZomboid\media\scripts\items_food.txt

Retrieved: Build 41.78.16
item Jujubes
	{
		DisplayName = Jujubes,
		DisplayCategory = Food,
		Type = Food,
		Weight = 0.1,
		Icon = Jujujubes,
		EvolvedRecipe = Cake:5;ConeIcecream:5,
		FoodType = Candy,
		HungerChange = -5,
		UnhappyChange = -10,
		Calories = 40,
		Carbohydrates = 10,
		Lipids = 0.5,
		Proteins = 0,
		EvolvedRecipeName = Jujube,
		WorldStaticModel = Jujubes_Ground,
	}

See also