Raspberry Shortbread: Difference between revisions

From PZwiki
m (Removed lines containing image_width)
m (Automated Formatting)
(3 intermediate revisions by the same user not shown)
Line 20: Line 20:
|item_id=Base.CookieJelly
|item_id=Base.CookieJelly
}}
}}
A '''raspberry shortbread''', previously called '''cookie jelly''', is a non-perishable [[food]] [[Items|item]].
A '''raspberry shortbread''', previously called '''cookie jelly''', is a non-perishable [[food]] [[Items|item]].


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


==Distribution==
==Distribution==
Line 37: Line 36:
! style="width: 3.2em;" | Chance
! style="width: 3.2em;" | Chance
|-
|-
|all  
|all
|[[displaycasebakery]]  
|[[displaycasebakery]]
|4  
|4
|1
|1
|-
|-
|cafeteria  
|cafeteria
|[[displaycasebakery]]  
|[[displaycasebakery]]
|4  
|4
|4
|4
|}
|}
Line 53: Line 52:
| {{CodeSnip
| {{CodeSnip
   | lang = java
   | lang = java
   | line = false
   | line = true
  | start = 3887
   | source = items_food.txt
   | source = items_food.txt
   | retrieved = true
   | retrieved = true
   | version = 41.68
   | version = 41.78.16
   | code =
   | code =
item CookieJelly
item CookieJelly
{
{
  DisplayCategory     = Food,
DisplayName = Raspberry Shortbread,
  Type               = Food,
DisplayCategory = Food,
  DisplayName        = Raspberry Shortbread,
Type = Food,
  Icon               = CookieJelly,
Weight = 0.1,
  Weight              = 0.1,
Icon = CookieJelly,
  HungerChange       = -5,
DaysFresh = 7,
  UnhappyChange       = -10,
DaysTotallyRotten = 30,
  Carbohydrates      = 22,
HungerChange = -5,
  Proteins            = 1,
UnhappyChange = -10,
  Lipids             = 8,
Calories = 160,
  Calories            = 160,
Carbohydrates = 22,
  WorldStaticModel   = CookieJelly,
Lipids = 8,
}
Proteins = 1,
  }}
WorldStaticModel = CookieJelly,
Tags = FitsToaster,
}
}}
}}
}}


Line 83: Line 86:
*[[Shortbread Cookie]]
*[[Shortbread Cookie]]


{{Navbox_food}}
{{Navbox items|food}}


[[Category:Non-perishable food]]
[[Category:Non-perishable food]]

Revision as of 11:29, 14 April 2024

Project ZomboidItemsFoodSweetsRaspberry Shortbread
Spiffo controlyourself.png
This page was last updated for an older version (41.68).
The current stable version is 41.78.16, released 2022-12-12, so information on this page may be inaccurate. Help get this page updated by adding any missing content. [edit]
Please update the version after updating the page.
Raspberry Shortbread
CookieJelly Model.png
General
Category
Food
Encumbrance
Moodle Icon HeavyLoad.png
0.1
Nutrition
HungerMoodle Icon Hungry.png
-7
CaloriesCalories
160
CarbohydratesCarbohydrates
22
ProteinsProteins
1
FatFat
8
Effect
UnhappinessMoodle Icon Unhappy.png
-10
Technical
Item ID
Base.CookieJelly

A raspberry shortbread, previously called cookie jelly, is a non-perishable food item.

Usage

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

Distribution

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

Containers
Building/Room Container Rolls Chance
all displaycasebakery 4 1
cafeteria displaycasebakery 4 4

Cookies can often be found in kitchen counters, bakeries, motel room fridges and candy stores.

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 CookieJelly
	{
		DisplayName = Raspberry Shortbread,
		DisplayCategory = Food,
		Type = Food,
		Weight = 0.1,
		Icon = CookieJelly,
		DaysFresh = 7,
		DaysTotallyRotten = 30,
		HungerChange = -5,
		UnhappyChange = -10,
		Calories = 160,
		Carbohydrates = 22,
		Lipids = 8,
		Proteins = 1,
		WorldStaticModel = CookieJelly,
		Tags = FitsToaster,
	}

See also