Jujubes: Difference between revisions

From PZwiki
m (Removed {{clear}} line above ==Distribution==)
m (Automated Formatting)
(9 intermediate revisions by the same user not shown)
Line 19: Line 19:
<!--TECHNICAL DETAILS-->
<!--TECHNICAL DETAILS-->
|item_id=Base.Jujubes
|item_id=Base.Jujubes
}}'''Jujubes''' are a [[Food#Non-Perishable|non-perishable]] food [[items|item]].
}}
'''Jujubes''' are a non-perishable [[food]] [[Items|item]].


==Usage==
==Usage==
Jujubes can be eaten, providing the player with some positive effects, including reducing [[Moodles#Unhappy|unhappiness]].
Jujubes can be eaten, providing the player with some positive effects, including reducing [[Unhappy|unhappiness]].


==Crafting==
==Crafting==
Line 29: Line 30:
===Evolved recipes===
===Evolved recipes===
Jujubes are [[cooking]] [[Recipe ingredients|ingredient]].
Jujubes are [[cooking]] [[Recipe ingredients|ingredient]].
{{EvolvedRecipesForItem|ConeIcecream=5||Cake=5|}}
{{EvolvedRecipesForItem|coneicecream=5||cake=5|}}


==Distribution==
==Distribution==
Line 37: Line 38:
! colspan="4" | Containers
! colspan="4" | Containers
|-
|-
!Building/Room
! Building/Room
!Container
! Container
! style="width: 3.2em;" |Rolls
! style="width: 3.2em;" | Rolls
! style="width: 3.2em;" |Chance
! style="width: 3.2em;" | Chance
|-
|-
| artstore
|artstore
| [[shelves]]
|[[shelves]]
| 4
|4
| 1
|1
|-
|-
| bandkitchen
|bandkitchen
| [[counter]]
|[[counter]]
| 4
|4
| 1
|1
|-
|-
| candystorage
|candystorage
| [[metal_shelves]]
|[[metal_shelves]]
| 4
|4
| 1
|1
|-
|-
| candystore
|candystore
| [[counter]]
|[[counter]]
| 4
|4
| 1
|1
|-
|-
| gasstorage
|gasstorage
| [[crate]]
|[[crate]]
| 4
|4
| 1
|1
|-
|-
| grocerystorage
|grocerystorage
| [[crate]]
|[[crate]]
| 4
|4
| 1
|1
|}
|}
Jujubes can be found in grocery stores, candy stores, gas stations and theaters.
Jujubes can be found in grocery stores, candy stores, gas stations and theaters.
Line 78: Line 79:
| {{CodeSnip
| {{CodeSnip
   | lang = java
   | lang = java
   | line = false
   | line = true
  | start = 9297
   | source = items_food.txt
   | source = items_food.txt
   | retrieved = true
   | retrieved = true
Line 84: Line 86:
   | code =
   | code =
item Jujubes
item Jujubes
{
{
    DisplayName         = Jujubes,
DisplayName = Jujubes,
    DisplayCategory     = Food,
DisplayCategory = Food,
    Type               = Food,
Type = Food,
    Weight             = 0.1,
Weight = 0.1,
    Icon               = Jujujubes,
Icon = Jujujubes,
    EvolvedRecipe       = Cake:5;ConeIcecream:5,
EvolvedRecipe = Cake:5;ConeIcecream:5,
    FoodType           = Candy,
FoodType = Candy,
    HungerChange       = -5,
HungerChange = -5,
    UnhappyChange       = -10,
UnhappyChange = -10,
    Calories           = 40,
Calories = 40,
    Carbohydrates       = 10,
Carbohydrates = 10,
    Lipids             = 0.5,
Lipids = 0.5,
    Proteins           = 0,
Proteins = 0,
    EvolvedRecipeName   = Jujube,
EvolvedRecipeName = Jujube,
    WorldStaticModel   = Jujubes_Ground,
WorldStaticModel = Jujubes_Ground,
}
}
  }}
}}
}}
}}


Line 110: Line 112:
*[[Gummy Bears]]
*[[Gummy Bears]]


{{Navbox food}}
{{Navbox items|miscellaneous_food}}
 
 
[[Category:Non-perishable food]]
[[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