Raspberry Shortbread: Difference between revisions

From PZwiki
(added links to other cookies)
(updated to 41.68 + added model + navbox)
Line 1: Line 1:
{{languages|Raspberry Shortbread}}
{{languages}}
{{header|Project Zomboid|Items|Food|Non-Perishable Food|type=Food|version=Version 40|incver=30}}{{Infobox food
{{header|Project Zomboid|Items|Food|Non-Perishable Food|type=Food|version=Version 41|incver=68}}{{Infobox food
|display_name=Raspberry Shortbread
|display_name=Raspberry Shortbread
|name_colour=Food
|name_colour=Food
|name_text_colour=Food
|name_text_colour=Food
|image=CookieJelly_120px.png
|image=CookieJelly_Model.png
|image_width=150px
|alternate_image=CookieJelly.png
|alternate_name=Raspberry Shortbread
|alternate_link=
<!--GENERAL-->
<!--GENERAL-->
|category=Food
|category=Food
Line 27: Line 31:


== Code ==
== Code ==
'''''From newitems.txt (Project Zomboid directory/media/scripts/)'''''
'''''From items_food.txt (Project Zomboid directory/media/scripts/)'''''
{{Retrieved|version=40|incver=30}}
{{Retrieved|version=41|incver=68}}
<pre>    item CookieJelly
<pre>    item CookieJelly
Type = Food,
    {
DisplayName = Raspberry Shortbread,
        DisplayCategory = Food,
Icon = CookieJelly,
        Type = Food,
Weight = 0.1,
        DisplayName = Raspberry Shortbread,
HungerChange = -7,
        Icon = CookieJelly,
UnhappyChange = -10,
        Weight = 0.1,
Carbohydrates = 22,
        HungerChange = -5,
Proteins = 1,
        UnhappyChange     = -10,
Lipids = 8,
        Carbohydrates = 22,
Calories = 160,</pre>
        Proteins = 1,
        Lipids = 8,
        Calories = 160,
        WorldStaticModel = CookieJelly,
    }</pre>


==See also==
==See also==
*[[Biscuit]]
*[[Cookie]]
*[[Cookie]]
*[[Chocolate Cookie]]
*[[Chocolate Cookie]]
Line 47: Line 56:
*[[Shortbread Cookie]]
*[[Shortbread Cookie]]


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

Revision as of 11:29, 14 March 2022

Project ZomboidItemsFoodNon-Perishable FoodRaspberry Shortbread
Raspberry Shortbread
Raspberry Shortbread
Raspberry Shortbread
General
Category Food
Encumbrance
Heavy Load
0.1
Nutrition
Hunger
Hunger
-7
Calories
Calories
160
Carbohydrates
Carbohydrates
22
Proteins
Proteins
1
Fat
Fat
8
Effect
Unhappiness
Unhappiness
-10
Technical details
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

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

Code

From items_food.txt (Project Zomboid directory/media/scripts/) Retrieved: Build 41.68

    item CookieJelly
    {
        DisplayCategory 	= Food,
        Type			= Food,
        DisplayName		= Raspberry Shortbread,
        Icon			= CookieJelly,
        Weight			= 0.1,
        HungerChange 		= -5,
        UnhappyChange	    	= -10,
        Carbohydrates 		= 22,
        Proteins 		= 1,
        Lipids 			= 8,
        Calories 		= 160,
        WorldStaticModel 	= CookieJelly,
    }

See also