Frosted Doughnut: Difference between revisions

From PZwiki
m (Automated CodeBox update)
m (Automated Formatting)
(14 intermediate revisions by the same user not shown)
Line 1: Line 1:
{{Languages}}
{{Header|Project Zomboid|Items|Food|Sweets}}
{{header/sandbox2|Project Zomboid|Items|Food|Sweets}}
{{Page version|41.65}}
{{page version|41.65}}
{{Infobox item
{{Infobox item
|name=Frosted Doughnut
|name=Frosted Doughnut
|model=DoughnutFrosted Model.png
|model=DoughnutFrosted_Model.png
|icon=DoughnutFrosted.png
|icon=DoughnutFrosted.png
<!--GENERAL-->
<!--GENERAL-->
Line 20: Line 19:
|item_id=Base.DoughnutFrosted
|item_id=Base.DoughnutFrosted
}}
}}
A '''frosted doughnut''' is a [[Food#Non-Perishable|non-perishable]] food [[items|item]].
A '''frosted doughnut''' is a non-perishable [[food]] [[Items|item]].


==Usage==
==Usage==
Frosted doughnuts can be eaten, providing the player with some positive effects, including reducing [[Moodles#Unhappy|unhappiness]].
Frosted doughnuts can be eaten, providing the player with some positive effects, including reducing [[Unhappy|unhappiness]].


{{clear}}
==Distribution==
==Distribution==
The loot distributions can be found in the table(s) below.
The loot distributions can be found in the table(s) below.
Line 32: 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
|-
|-
| rowspan="2"|bakery  
|rowspan="2"|bakery
| [[displaycase]]  
|[[displaycase]]
| 4  
|4
| 1
|1
|-
|-
|[[displaycase]]
|[[displaycase]]
Line 52: Line 50:
| {{CodeSnip
| {{CodeSnip
   | lang = java
   | lang = java
   | line = false
   | line = true
   | source = items.txt
  | start = 6116
   | source = items_food.txt
   | retrieved = true
   | retrieved = true
   | version = 41.65
   | version = 41.78.16
   | code =
   | code =
item DoughnutFrosted
item DoughnutFrosted
{
{
  Type               = Food,
DisplayName = Frosted Doughnut,
  DisplayName        = Frosted Doughnut,
DisplayCategory = Food,
  Icon               = DoughnutFrosted,
Type = Food,
  Weight              = 0.1,
Weight = 0.1,
  HungerChange       = -7,
Icon = DoughnutFrosted,
  UnhappyChange       = -15,
DaysFresh = 3,
  Carbohydrates      = 35,
DaysTotallyRotten = 5,
  Proteins            = 3,
HungerChange = -7,
  Lipids             = 15,
UnhappyChange = -15,
  Calories            = 180,
Calories = 180,
  WorldStaticModel   = Doughnut_Frosted_Ground,
Carbohydrates = 35,
}
Lipids = 15,
  }}
Proteins = 3,
WorldStaticModel = Doughnut_Frosted_Ground,
Tags = FitsToaster,
}
}}
}}
}}


Line 79: Line 82:
*[[Jelly Doughnut]]
*[[Jelly Doughnut]]


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

Revision as of 08:41, 14 April 2024

Project ZomboidItemsFoodSweetsFrosted Doughnut
Spiffo controlyourself.png
This page was last updated for an older version (41.65).
The current stable version is 41.78.16, released 2022-12-12, so information on this page may be inaccurate. Help get this page updated by adding any missing content. [edit]
Please update the version after updating the page.
Frosted Doughnut
DoughnutFrosted Model.png
General
Category
Food
Encumbrance
Moodle Icon HeavyLoad.png
0.1
Nutrition
HungerMoodle Icon Hungry.png
-7
CaloriesCalories
180
CarbohydratesCarbohydrates
35
ProteinsProteins
3
FatFat
15
Effect
UnhappinessMoodle Icon Unhappy.png
-15
Technical
Item ID
Base.DoughnutFrosted

A frosted doughnut is a non-perishable food item.

Usage

Frosted doughnuts can be eaten, providing the player with some positive effects, including reducing unhappiness.

Distribution

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

Containers
Building/Room Container Rolls Chance
bakery displaycase 4 1
displaycase 4 2

Frosted doughnuts can be found in bakery display 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 DoughnutFrosted
	{
		DisplayName = Frosted Doughnut,
		DisplayCategory = Food,
		Type = Food,
		Weight = 0.1,
		Icon = DoughnutFrosted,
		DaysFresh = 3,
		DaysTotallyRotten = 5,
		HungerChange = -7,
		UnhappyChange = -15,
		Calories = 180,
		Carbohydrates = 35,
		Lipids = 15,
		Proteins = 3,
		WorldStaticModel = Doughnut_Frosted_Ground,
		Tags = FitsToaster,
	}

See also