Toggle menu
Toggle personal menu
Not logged in
Your IP address will be publicly visible if you make any edits.

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
Ice Cream Cone
Ice Cream Cone
ConeIcecream.png Ice Cream Cone ×1
Ice Cream Cone ingredients Ice Cream Cone ingredients ×1-3
none none none 0.75 Cooking

Gallery

History

Base.ConeIcecream

Version Description
Build 41.78 Item tag added with value GoodFrozen.
Build 41.72 HungerChange changed from -25 to -15.
Packaged added with value TRUE.
ReplaceOnRotten added with value ConeIcecreamMelted.
Build 41.69 AlwaysWelcomeGift removed.
Build 41.66 WorldStaticModel added with value ConeIcecream_Ground.
Build 41.65 Released on this version.

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