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]
Scissors.png
It has been suggested that this article should be split into Ice Cream Cone (topping).
Ice Cream Cone
ConeIceCream Model.png
ConeIceCreamToppings 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
HungerMoodle Icon Hungry.png
-15
CaloriesCalories
470
CarbohydratesCarbohydrates
120
ProteinsProteins
20
FatFat
44
Effect
UnhappinessMoodle Icon Unhappy.png
-10
Technical
Item ID
Base.ConeIcecream
Base.ConeIcecreamToppings
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

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,
	}

ConeIceCreamTopped.png Base.ConeIcecreamToppings
Source: ProjectZomboid\media\scripts\items_food.txt

Retrieved: Build 41.78.16
item ConeIcecreamToppings
	{
		DisplayName = Ice Cream Cone,
		DisplayCategory = Food,
		Type = Food,
		Weight = 0.2,
		Icon = ConeIceCreamTopped,
		Packaged = TRUE,
		ReplaceOnRotten = ConeIcecreamMelted,
		DaysFresh = 1,
		DaysTotallyRotten = 1,
		HungerChange = -15,
		UnhappyChange = -10,
		Calories = 470,
		Carbohydrates = 120,
		Lipids = 44,
		Proteins = 20,
		WorldStaticModel = ConeIceCreamToppings_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