Ice Cream Cone

From PZwiki
Project ZomboidItemsFoodSweetsIce Cream Cone
UI Tick.png
This page has been revised for the current stable version (41.78.16).
Help by adding any missing content. [edit]
Ice Cream Cone
ConeIcecream Model.png
General
Category
Food
Encumbrance
Moodle Icon HeavyLoad.png
0.2
Properties
Packaged
True
Days fresh
1 days
Days until rotten
1 days
Nutrition
HungerUI Hunger.png
-15
CaloriesCalories
470
CarbohydratesCarbohydrates
120
ProteinsProteins
20
FatFat
44
Effect
UnhappinessUI Unhappy.png
-10
Technical
Item ID
Base.ConeIcecream
Base.ConeIcecreamMelted

Ice Cream Cone is a perishable food item.

Crafting

Obtaining

Product Ingredients Tools Requirements Workstation XP
ConeIcecream.png
Ice Cream Cone
Icecream.png Ice Cream ×10 unit(s)
Cone.png Cone ×1
Spoon.png
Spoon
none none 0.75 Cooking

What it makes

Product Ingredients Tools Requirements Workstation XP
ConeIceCreamTopped.png
Ice Cream Cone
ConeIcecream.png Ice Cream Cone ×1
Soup Ingredients.png Ice Cream Cone Ingredients ×1-3
none none none 0.75 Cooking

Gallery

History

Base.ConeIcecream

Version Description
41.65 Released on or before this version.

Help PZwiki by adding to this history.

Code

Code icon.png Code snippet! This section contains source code from Project ZomboidShow / Hide

ConeIcecream.png Base.ConeIcecream
Source: ProjectZomboid\media\scripts\items_food.txt

Retrieved: Build 41.78.16
item ConeIcecream
	{
		DisplayName = Ice Cream Cone,
		DisplayCategory = Food,
		Type = Food,
		Weight = 0.2,
		Icon = ConeIcecream,
		Packaged = TRUE,
		ReplaceOnRotten = ConeIcecreamMelted,
		DaysFresh = 1,
		DaysTotallyRotten = 1,
		HungerChange = -15,
		UnhappyChange = -10,
		Calories = 470,
		Carbohydrates = 120,
		Lipids = 44,
		Proteins = 20,
		WorldStaticModel = ConeIcecream_Ground,
		Tags = GoodFrozen,
	}

Base.ConeIcecreamMelted
Source: ProjectZomboid\media\scripts\items_food.txt

Retrieved: Build 41.78.16
item ConeIcecreamMelted
	{
		DisplayName = Melted Ice Cream Cone,
		DisplayCategory = Food,
		Type = Food,
		Weight = 0.2,
		Icon = ConeIcecream,
		HungerChange = -15,
		Calories = 470,
		Carbohydrates = 120,
		Lipids = 44,
		Proteins = 20,
		WorldStaticModel = ConeIceCreamMelted_Ground,
		DaysFresh = 2,
		DaysTotallyRotten = 2,
	}

See also