Choco Cakes: Difference between revisions

From PZwiki
m (Fix image)
m (Automated Formatting)
(25 intermediate revisions by 6 users not shown)
Line 1: Line 1:
{{Languages}}{{Header|Project Zomboid|Items|Food|Non-Perishable Food|type=Food|version=Version 41|incver=73}}{{Infobox food
{{Header|Project Zomboid|Items|Food|Sweets}}
|display_name=Choco Cakes
{{Page version|41.78.16}}
|name_colour=Food
{{Infobox item
|name_text_colour=Food
|name=Choco Cakes
|image=Snackcake_Chocakes.png
|model=ChocoCakes_Model.png
|icon=Snackcake_Chocakes.png
<!--GENERAL-->
<!--GENERAL-->
|category=Food
|category=Food
Line 16: Line 17:
|unhappy_change=-10
|unhappy_change=-10
<!--TECHNICAL DETAILS-->
<!--TECHNICAL DETAILS-->
|class_name=Base.ChocoCakes
|item_id=Base.ChocoCakes
}}'''Choco cakes''' is a [[Food#Non-Perishable|non-perishable]] food [[item]].  
}}
'''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 23: 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]].
==Gallery==
<gallery>
File:ChocoCakes Model.png|Model for: [[File:Snackcake_Chocakes.png]]
</gallery>


==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 49: Line 77:
         WorldStaticModel = Snackcake_Chocakes,
         WorldStaticModel = Snackcake_Chocakes,
}
}
</pre>
}}
}}


==See also==
==See also==
*[[Mint Candy]]
*[[Plonkies]]
*[[Lollipop]]
*[[Sno Globes]]
*[[Candy Package]]
*[[Quagga Cakes]]
*[[Hi His]]
 
{{Navbox items|miscellaneous_food}}
 


{{Navbox 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