Choco Cakes: Difference between revisions

From PZwiki
(+3d model to infobox -gallery)
m (Automated Formatting)
(21 intermediate revisions by 3 users not shown)
Line 1: Line 1:
{{Languages}}
{{Header|Project Zomboid|Items|Food|Sweets}}
{{Header|Project Zomboid|Items|Food|Non-Perishable Food|type=Food|version=Version 41|incver=73}}
{{Page version|41.78.16}}
{{Infobox food
{{Infobox item
|display_name=Choco Cakes
|name=Choco Cakes
|name_colour=Food
|model=ChocoCakes_Model.png
|name_text_colour=Food
|icon=Snackcake_Chocakes.png
|image=ChocoCakes Model.png
|image_width=200px
|alternate_image=Snackcake_Chocakes.png
<!--GENERAL-->
<!--GENERAL-->
|category=Food
|category=Food
Line 20: Line 17:
|unhappy_change=-10
|unhappy_change=-10
<!--TECHNICAL DETAILS-->
<!--TECHNICAL DETAILS-->
|class_name=Base.ChocoCakes
|item_id=Base.ChocoCakes
}}'''Choco cakes''' are a [[Food#Non-Perishable|non-perishable]] food [[item]]. They are the in-universe equivalent to [https://web.archive.org/web/https://www.littledebbie.com/www/snackproducts/view/29/chocolate-cupcakes Little Debbie Chocolate Cupcakes].
}}
'''Choco cakes''' are a non-perishable [[food]] [[Items|item]]. They are the in-universe equivalent to [https://web.archive.org/web/https://www.littledebbie.com/www/snackproducts/view/29/chocolate-cupcakes Little Debbie Chocolate Cupcakes].


==Usage==
==Usage==
Line 27: Line 25:


==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
|-
|artstore
|[[shelves]]
|4
|8
|-
|bandkitchen
|[[counter]]
|4
|8
|-
|gasstorage
|[[crate]]
|4
|8
|}
Choco cakes can often be found in candy stores, and kitchen [[Containers#Counters|counters]].
Choco cakes can often be found in candy stores, and kitchen [[Containers#Counters|counters]].


==Code==
==Code==
'''''From items_food.txt (Project Zomboid directory/media/scripts/)'''''
{{CodeBox
{{Retrieved|version=41|incver=73}}
| {{CodeSnip
<pre>
  | lang = java
    item ChocoCakes
  | line = true
  | start = 9463
  | source = items_food.txt
  | retrieved = true
  | version = 41.78.16
  | code =
item ChocoCakes
{
{
DisplayName = Choco Cakes,
DisplayName = Choco Cakes,
Line 48: Line 77:
         WorldStaticModel = Snackcake_Chocakes,
         WorldStaticModel = Snackcake_Chocakes,
}
}
</pre>
}}
}}


==See also==
==See also==
Line 56: Line 86:
*[[Hi His]]
*[[Hi His]]


{{Navbox food}}
{{Navbox items|miscellaneous_food}}
 
 
[[Category:Non-perishable food]]

Revision as of 07:32, 14 April 2024

Project ZomboidItemsFoodSweetsChoco Cakes
UI Tick.png
This page has been revised for the current stable version (41.78.16).
Help by adding any missing content. [edit]
Choco Cakes
ChocoCakes Model.png
General
Category
Food
Encumbrance
Moodle Icon HeavyLoad.png
0.2
Nutrition
HungerMoodle Icon Hungry.png
-10
CaloriesCalories
200
CarbohydratesCarbohydrates
30
ProteinsProteins
1.8
FatFat
8
Effect
UnhappinessMoodle Icon Unhappy.png
-10
Technical
Item ID
Base.ChocoCakes

Choco cakes are a non-perishable food item. They are the in-universe equivalent to Little Debbie Chocolate Cupcakes.

Usage

Choco cakes can be eaten, providing the player with some positive effects.

Distribution

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

Containers
Building/Room Container Rolls Chance
artstore shelves 4 8
bandkitchen counter 4 8
gasstorage crate 4 8

Choco cakes can often be found in candy stores, and kitchen counters.

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 ChocoCakes
	{
		DisplayName = Choco Cakes,
		DisplayCategory = Food,
		Type = Food,
		Weight = 0.2,
		Icon = Snackcake_Chocakes,
		HungerChange = -10,
		UnhappyChange = -10,
		Calories = 200,
		Carbohydrates = 30,
		Lipids = 8,
		Proteins = 1.8,
        WorldStaticModel = Snackcake_Chocakes,
	}

See also