Raspberry Shortbread: Difference between revisions

From PZwiki
(added nutrition to infobox)
m (Automated Formatting)
(25 intermediate revisions by 5 users not shown)
Line 1: Line 1:
{{languages|Raspberry Shortbread}}
{{Header|Project Zomboid|Items|Food|Sweets}}
{{header|Project Zomboid|Items|Food|Non-Perishable Food|type=Food|version=Version 40|incver=14}}{{Notice|Future}}{{Infobox food
{{Page version|41.68}}
|display_name=Raspberry Shortbread
{{Infobox item
|name_colour=Food
|name=Raspberry Shortbread
|name_text_colour=Food
|model=CookieJelly_Model.png
|image=CookieJelly_120px.png
|icon=CookieJelly.png
|icon_name=Raspberry Shortbread
<!--GENERAL-->
<!--GENERAL-->
|category=Food
|category=Food
Line 10: Line 11:
<!--NUTRITION-->
<!--NUTRITION-->
|hunger_change=-7
|hunger_change=-7
|calories=16.6
|calories=160
|lipids=0
|lipids=8
|proteins=0
|proteins=1
|carbohydrates=4.33
|carbohydrates=22
<!--EFFECT-->
<!--EFFECT-->
|unhappy_change=-10
|unhappy_change=-10
<!--TECHNICAL DETAILS-->
<!--TECHNICAL DETAILS-->
|class_name=Base.CookieJelly
|item_id=Base.CookieJelly
}}A '''raspberry shortbread''', also called '''cookie jelly''', is a [[Food#Non-Perishable|non-perishable]] food [[items|item]] expected to be added in [[build 40]].
}}
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==
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
|-
|all
|[[displaycasebakery]]
|4
|1
|-
|cafeteria
|[[displaycasebakery]]
|4
|4
|}
Cookies can often be found in kitchen [[Containers#Counter|counters]], bakeries, motel room [[Containers#Refrigerators|fridges]] and candy stores.
Cookies can often be found in kitchen [[Containers#Counter|counters]], bakeries, motel room [[Containers#Refrigerators|fridges]] and candy stores.


== Code ==
==Code==
'''''From newitems.txt (Project Zomboid directory/media/scripts/)'''''
{{CodeBox
{{Retrieved|version=40|incver=5}}
| {{CodeSnip
<pre>    item CookieJelly
  | lang = java
Type = Food,
  | line = true
DisplayName = Raspberry Shortbread,
  | start = 3887
Icon = CookieJelly,
  | source = items_food.txt
Weight = 0.1,
  | retrieved = true
HungerChange = -7,
  | version = 41.78.16
UnhappyChange = -10,
  | code =
Carbohydrates = 22,
item CookieJelly
Proteins = 1,
{
Lipids = 8,
DisplayName = Raspberry Shortbread,
Calories = 160,</pre>
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==
==See also==
*[[Biscuit]]
*[[Cookie]]
*[[Cookie]]
*[[Chocolate Cookie]]
*[[Oatmeal Cookie]]
*[[Shortbread Cookie]]
{{Navbox items|food}}


{{Navbox/Consumables}}
[[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