Cupcake: Difference between revisions

From PZwiki
No edit summary
m (Version bump)
(39 intermediate revisions by 12 users not shown)
Line 1: Line 1:
{{languages}}
{{Header|Project Zomboid|Items|Food|Sweets}}
{{Page version|41.78.16}}
{{Reupload|Missing 3D Variant Model (Rotten)}}
{{Infobox item
|name=Cupcake
|model=Cupcake_Model.png
|icon=Cupcake.png
|icon_name=Cupcake
<!--GENERAL-->
|category=Food
|weight=0.2
|days_fresh=4
|days_rotten=8
<!--NUTRITION-->
|hunger_change=-20
|calories=305
|lipids=4
|proteins=4
|carbohydrates=67
<!--TECHNICAL DETAILS-->
|item_id=Base.Cupcake
}}
 
A '''cupcake''' is a perishable [[food]] [[Items|item]].
 
==Usage==
===Consumable properties===
Cupcakes can be eaten, providing the player with some positive effects, however these will become negative the longer it's left to perish.
{{Consumables
{{Consumables
|image = Cupcake.png
|image = Cupcake.png
|hunger = -15
|hunger = -20
|weight = 1
|perishable = 1
|cookable = 0
|unrotten hunger = -15
|unrotten unhappiness = +10
|unrotten boredom = +10
|rotten hunger = -9
|rotten unhappiness = +20
|rotten boredom = +20
|rotten image = Cupcake.png
}}
}}


The cupcake is a food that will replenish a moderately low amount of hunger for the person who eats it. Unfortunately, the cupcake cannot be found naturally.
==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;"
== Effects ==
! colspan="4" | Containers
[[Hunger]]: -15
|-
 
! Building/Room
 
! Container
== Code ==
! style="width: 3.2em;" | Rolls
<nowiki>item Cupcake
! style="width: 3.2em;" | Chance
{
HungerChange = -15,
Weight = 0.2,
AlwaysWelcomeGift = TRUE,
Type = Food,
DisplayName = Cupcake,
Icon = Cupcake,
 
}</nowiki>
 
== History ==
 
{| class="wikitable" width="550" style="text-align:center;"
|-
|-
! Alpha ||
|all
|[[displaycasebakery]]
|4
|1
|-
|-
| RC 2.9.8a || Added to the game.
|cafeteria
|[[displaycasebakery]]
|4
|4
|}
|}
Cupcake can be found in bakeries, cafes, candy stores, and some convenience store [[Containers#Shelves|shelves]].
==Code==
{{CodeBox
| {{CodeSnip
  | lang = java
  | line = true
  | start = 3996
  | source = items_food.txt
  | retrieved = true
  | version = 41.78.16
  | code =
item Cupcake
{
DisplayName = Cupcake,
DisplayCategory = Food,
Type = Food,
Weight = 0.2,
Icon = Cupcake,
DaysFresh = 4,
DaysTotallyRotten = 8,
HungerChange = -20,
Calories = 305,
Carbohydrates = 67,
Lipids = 4,
Proteins = 4,
WorldStaticModel = Cupcake,
}
}}
}}


==See Also==
==See also==
* [[Egg]]
*[[Cake Slice]]
*[[Cookie]]
*[[Pie Slice]]


{{Navbox/Consumables}}
{{Navbox food}}


[[Category:Consumables]]
[[Category:Perishable food]]
[[Category:Items]]
[[Category:Food]]
[[Category:Non-Perishable Food]]
[[Category:Version 0.2.0p]]

Revision as of 02:34, 28 March 2024

UI Tick.png
This page has been revised for the current stable version (41.78.16).
Help by adding any missing content. [edit]
Frame.png
This article contains outdated/low-quality images.
Reason: Missing 3D Variant Model (Rotten)
Please help the PZwiki by uploading an improved/updated version of the image(s) found on this page.
Cupcake
Cupcake Model.png
General
Category
Food
Encumbrance
Moodle Icon HeavyLoad.png
0.2
Properties
Days fresh
4 days
Days until rotten
8 days
Nutrition
HungerMoodle Icon Hungry.png
-20
CaloriesCalories
305
CarbohydratesCarbohydrates
67
ProteinsProteins
4
FatFat
4
Technical
Item ID
Base.Cupcake

A cupcake is a perishable food item.

Usage

Consumable properties

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

Fresh Stale Rotten

Cupcake.png
Hunger: -20


Cupcake.png
Hunger: -15
Boredom: +10
Unhappiness: +10

Cupcake.png
Hunger: -9
Boredom: +20
Unhappiness: +20
Dangerous, will cause sickness.

Distribution

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

Containers
Building/Room Container Rolls Chance
all displaycasebakery 4 1
cafeteria displaycasebakery 4 4

Cupcake can be found in bakeries, cafes, candy stores, and some convenience store shelves.

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 Cupcake
	{
		DisplayName = Cupcake,
		DisplayCategory = Food,
		Type = Food,
		Weight = 0.2,
		Icon = Cupcake,
		DaysFresh = 4,
		DaysTotallyRotten = 8,
		HungerChange = -20,
		Calories = 305,
		Carbohydrates = 67,
		Lipids = 4,
		Proteins = 4,
		WorldStaticModel = Cupcake,
	}

See also