Choco Cakes: Difference between revisions

From PZwiki
m (Automated Formatting for Infobox and Section Headers)
m (Automated Formatting)
(8 intermediate revisions by the same user not shown)
Line 1: Line 1:
{{Header|Project Zomboid|Items|Food|Sweets}}
{{Header|Project Zomboid|Items|Food|Sweets}}
{{Page version|41.73}}
{{Page version|41.78.16}}
{{Infobox item
{{Infobox item
|name=Choco Cakes
|name=Choco Cakes
|model=ChocoCakes Model.png
|model=ChocoCakes_Model.png
|icon=Snackcake_Chocakes.png
|icon=Snackcake_Chocakes.png
<!--GENERAL-->
<!--GENERAL-->
Line 19: Line 19:
|item_id=Base.ChocoCakes
|item_id=Base.ChocoCakes
}}
}}
 
'''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].
'''Choco cakes''' are a [[Food#Non-Perishable|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 31: Line 30:
! colspan="4" | Containers
! colspan="4" | Containers
|-
|-
!Building/Room
! Building/Room
!Container
! Container
! style="width: 3.2em;" |Rolls
! style="width: 3.2em;" | Rolls
! style="width: 3.2em;" |Chance
! style="width: 3.2em;" | Chance
|-
|-
| artstore
|artstore
| [[shelves]]
|[[shelves]]
| 4
|4
| 8
|8
|-
|-
| bandkitchen
|bandkitchen
| [[counter]]
|[[counter]]
| 4
|4
| 8
|8
|-
|-
| gasstorage
|gasstorage
| [[crate]]
|[[crate]]
| 4
|4
| 8
|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]].
Line 57: Line 56:
| {{CodeSnip
| {{CodeSnip
   | lang = java
   | lang = java
   | line = false
   | line = true
  | start = 9463
   | source = items_food.txt
   | source = items_food.txt
   | retrieved = true
   | retrieved = true
   | version = 41.73
   | version = 41.78.16
   | code =
   | code =
item ChocoCakes
item ChocoCakes
{
{
  DisplayName         = Choco Cakes,
DisplayName = Choco Cakes,
  DisplayCategory     = Food,
DisplayCategory = Food,
  Type               = Food,
Type = Food,
  Weight             = 0.2,
Weight = 0.2,
  Icon               = Snackcake_Chocakes,
Icon = Snackcake_Chocakes,
  HungerChange       = -10,
HungerChange = -10,
  UnhappyChange       = -10,
UnhappyChange = -10,
  Calories           = 200,
Calories = 200,
  Carbohydrates       = 30,
Carbohydrates = 30,
  Lipids             = 8,
Lipids = 8,
  Proteins           = 1.8,
Proteins = 1.8,
  WorldStaticModel   = Snackcake_Chocakes,
        WorldStaticModel = Snackcake_Chocakes,
}
}
  }}
}}
}}
}}


Line 86: Line 86:
*[[Hi His]]
*[[Hi His]]


{{Navbox food}}
{{Navbox items|miscellaneous_food}}
 
 
[[Category:Non-perishable 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