Lollipop: Difference between revisions

From PZwiki
m (Automated 'items' capitalisation)
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=Lollipop
|name=Lollipop
|model=Lollipop Model.png
|model=Lollipop_Model.png
|icon=Lollipop.png
|icon=Lollipop.png
|icon_name=Lollipop
|icon_name=Lollipop
Line 23: Line 23:
|item_id=Base.Lollipop
|item_id=Base.Lollipop
}}
}}
 
A '''lollipop''' is a non-perishable [[food]] [[Items|item]].
A '''lollipop''' is a [[Food#Non-Perishable|non-perishable]] food [[Items|item]].


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


==Distribution==
==Distribution==
Line 35: Line 34:
! 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
|-
|-
| classroom
|classroom
| [[desk]]
|[[desk]]
| 4
|4
| 1
|1
|-
|-
| daycare
|daycare
| [[desk]]
|[[desk]]
| 4
|4
| 1
|1
|}
|}


Line 61: Line 60:
| {{CodeSnip
| {{CodeSnip
   | lang = java
   | lang = java
   | line = false
   | line = true
  | start = 3943
   | source = items_food.txt
   | source = items_food.txt
   | retrieved = true
   | retrieved = true
   | version = 41.73
   | version = 41.78.16
   | code =
   | code =
item Lollipop
item Lollipop
{
{
  DisplayName         = Lollipop,
DisplayName = Lollipop,
  DisplayCategory     = Food,
DisplayCategory = Food,
  Type               = Food,
Type = Food,
  Weight             = 0.1,
Weight = 0.1,
  Icon               = Lollipop,
Icon = Lollipop,
  HungerChange       = -5,
HungerChange = -5,
  UnhappyChange       = -10,
UnhappyChange = -10,
  Calories           = 40,
Calories = 40,
  Carbohydrates       = 10,
Carbohydrates = 10,
  Lipids             = 0.5,
Lipids = 0.5,
  Proteins           = 0,
Proteins = 0,
  WorldStaticModel   = Lollipop,
WorldStaticModel = Lollipop,
}
}
  }}
}}
}}
}}


Line 89: Line 89:
*[[Modjeska]]
*[[Modjeska]]


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

Revision as of 09:49, 14 April 2024

Project ZomboidItemsFoodSweetsLollipop
UI Tick.png
This page has been revised for the current stable version (41.78.16).
Help by adding any missing content. [edit]
Lollipop
Lollipop Model.png
Candy Package Candy Package
General
Category
Food
Encumbrance
Moodle Icon HeavyLoad.png
0.1
Nutrition
HungerMoodle Icon Hungry.png
-5
CaloriesCalories
40
CarbohydratesCarbohydrates
10
ProteinsProteins
0
FatFat
0.5
Effect
UnhappinessMoodle Icon Unhappy.png
-10
Technical
Item ID
Base.Lollipop

A lollipop is a non-perishable food item.

Usage

Lollipops 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
classroom desk 4 1
daycare desk 4 1

Buildings

Lollipops can be found in grocery stores, office desks, motel room refrigerators and bins.

Items

Lollipops can be found in garbage bags or by opening a candy package, giving 5 lollipops.

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 Lollipop
	{
		DisplayName = Lollipop,
		DisplayCategory = Food,
		Type = Food,
		Weight = 0.1,
		Icon = Lollipop,
		HungerChange = -5,
		UnhappyChange = -10,
		Calories = 40,
		Carbohydrates = 10,
		Lipids = 0.5,
		Proteins = 0,
		WorldStaticModel = Lollipop,
	}

See also