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 XP gained Skill(s) Recipe Ingredient 1 Ingredient 2 Ingredient 3
Ice Cream Cone
Ice Cream Cone
0.75 Cooking none Spoon
Spoon
(keep)
Ice Cream
Ice Cream (10 units)
(consumed)
Cone
Cone
(consumed)

What it makes

Product XP gained Skill(s) Recipe Ingredient 1 Ingredient 2
Ice Cream Cone
Ice Cream Cone
0.75 Cooking none Ice Cream Cone
Ice Cream Cone
(Base item)
Ice Cream Cone Ingredients
Ice Cream Cone Ingredients (1-3)
(consumed)

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