Strawberry Cake Slice: Difference between revisions

From PZwiki
No edit summary
m (Cleanup)
Line 1: Line 1:
{{languages|{{PAGENAME}}}}
{{Languages}}{{Header|The Game World|Items|Food|Perishable Food|type=Food|version=Version 41|incver=65}}{{Infobox food
<!--COMMENT: The header template goes below the language template, there should be NOTHING in between. The format can be seen in the header template with a working explanation. The header connects categories and Version number. PLEASE ENTER THE VERSION AND INCREMENT NUMBER WHEN YOU MAKE OR EDIT A PAGE. It helps everyone else know how old the page is version-wise -->
{{header|The Game World|Items|Food|Perishable Food|type=Food|version=Version 41|incver=65}}<!--
Comment: This section is for the infobox which will be positioned on the right of the page. The information can be pulled from the items/newitems.txt file in [Zomboid Folder\media\scripts]. For more info on how to use the infobox, see: https://pzwiki.net/wiki/Template:Infobox_food. Image.png is the default question mark image-->
{{Infobox food
|display_name=Strawberry Cake Slice
|display_name=Strawberry Cake Slice
|name_colour=Food
|name_colour=Food
Line 21: Line 17:
<!--EFFECT-->
<!--EFFECT-->
|unhappy_change=-10
|unhappy_change=-10
<!--TECHNICAL DETAILS-->
<!--TECHNICAL DETAILS-->
|class_name=Base.CakeStrawberryShortcake
|class_name=Base.CakeStrawberryShortcake
}}<!--COMMENT: General introductory for the item-->
}}A '''Strawberry Cake Slice''' is a [[Food#Perishable|perishable]] food [[items|item]]
A '''Strawberry Cake Slice''' is a [[Food#Perishable|perishable]] food [[items|item]]


__TOC__
==Usage==
 
== Usage ==
A Strawberry Cake Slice can be eaten, providing the player with some positive effects, however these will become negative the longer it's left to perish.
A Strawberry Cake Slice can be eaten, providing the player with some positive effects, however these will become negative the longer it's left to perish.


=== Consumable properties ===
===Consumable properties===
{{Consumables2
{{Consumables2
|image = CakeStrawberryShortcake.png
|image = CakeStrawberryShortcake.png
Line 48: Line 40:
}}
}}


 
==Distribution==
== Distribution ==
Strawberry Cake Slices can be found in bakery [[Containers#Displays|display counters]].
Strawberry Cake Slices can be found in bakery [[Containers#Displays|display counters]].


== Code ==
==Code==
'''''From items.txt (Project Zomboid directory/media/scripts/)'''''
'''''From items.txt (Project Zomboid directory/media/scripts/)'''''
{{Retrieved|version=41|incver=65}}
{{Retrieved|version=41|incver=65}}
<pre>   item CakeStrawberryShortcake
<pre>
    item CakeStrawberryShortcake
     {
     {
         Type = Food,
         Type = Food,
Line 70: Line 62:
         Calories = 75,
         Calories = 75,
         StaticModel = CakeSlice,
         StaticModel = CakeSlice,
         WorldStaticModel = StrawberryShortcake_Ground,</pre>
         WorldStaticModel = StrawberryShortcake_Ground,
</pre>


==See also==
==See also==
Line 79: Line 72:
*[[Chocolate Cake Slice]]
*[[Chocolate Cake Slice]]
*[[Red Velvet Cake Slice]]
*[[Red Velvet Cake Slice]]
{{Navbox/Consumables}}
 
<!--Comment: Any categories that this item may belong to, but are not included in the header can be listed here-->
{{Navbox food}}
 
[[Category:Food]]
[[Category:Food]]

Revision as of 22:28, 5 April 2023

The Game WorldItemsFoodPerishable FoodStrawberry Cake Slice
Strawberry Cake Slice
Strawberry Cake Slice
General
Category Food
Encumbrance
Heavy Load
0.2
Days until stale 3 days
Days until rotten 2 days
Nutrition
Hunger
Hunger
-10
Calories
Calories
75
Carbohydrates
Carbohydrates
4
Proteins
Proteins
10
Fat
Fat
12
Effect
Unhappiness
Unhappiness
-10
Technical details
Item ID Base.CakeStrawberryShortcake

A Strawberry Cake Slice is a perishable food item

Usage

A Strawberry Cake Slice can be eaten, providing the player with some positive effects, however these will become negative the longer it's left to perish.

Consumable properties

Template:Consumables2

Distribution

Strawberry Cake Slices can be found in bakery display counters.

Code

From items.txt (Project Zomboid directory/media/scripts/) Retrieved: Build 41.65

    item CakeStrawberryShortcake
    {
        Type				=		Food,
        HungerChange 		=		-8,
        UnhappyChange	    =	    -10,
        DisplayName			=		Strawberry Cake Slice,
        Icon				=		CakeStrawberryShortcake,
        Weight				=		0.2,
        DaysFresh 			=		3,
        DaysTotallyRotten 	=	 	5,
        Carbohydrates = 4,
        Proteins = 10,
        Lipids = 12,
        Calories = 75,
        StaticModel = CakeSlice,
        WorldStaticModel = StrawberryShortcake_Ground,

See also