Pop

From PZwiki
UI Tick.png
This page has been revised for the current stable version (41.78.16).
Help by adding any missing content. [edit]
Frame.png
This article contains outdated/low-quality images.
Reason: Missing 3D Model variants
Please help the PZwiki by uploading an improved/updated version of the image(s) found on this page.
Pop
PopCanRed Model.png
Pop
Pop
Empty Pop Can Empty Pop Can
General
Category
Food
Encumbrance
Moodle Icon HeavyLoad.png
0.3
Properties
Packaged
True
Nutrition
HungerMoodle Icon Hungry.png
-8
ThirstMoodle Icon Thirsty.png
-60
CaloriesCalories
140
CarbohydratesCarbohydrates
39
ProteinsProteins
0
FatFat
0
Effect
UnhappinessMoodle Icon Unhappy.png
-10
Technical
Item ID
Base.Pop
Base.Pop2
Base.Pop3
♪ Never let the music stop! ♪
♪ Grab, grab, grab a can of POP! ♪
— In-game radio

Pop is a non-perishable food item.

Usage

Pop can be drunk, providing the player with some positive effects by reducing thirst and hunger, as well as reducing unhappiness. Once fully consumed, an empty pop can will be left in the player’s inventory. Pop provides a low number of calories and carbohydrates, making it inefficient if the player wants to gain weight.

Unlike bottles of water, pop will not be drunk automatically to replenish thirst.

Distribution

The loot distributions can be found in the table(s) below.

Containers
Building/Room Container Rolls Chance
all fridge 4 2
artstore shelves 4 1
bandkitchen fridge 4 4
bar counter 4 1
breakroom fridge 4 4
cafeteria displaycasebakery 4 8
shelves 4 1
shelves 4 2
conveniencestore crate 4 1
crate 4 2
fridge 4 1
fridge 4 2
gasstorage crate 4 1
generalstore shelves 4 1
shelves 4 2
kitchen counter 4 1
motelroomoccupied fridge 1 6

Pop can be found in pop vending machines, offices, Spiffo's, bars, motel rooms, restaurants, some refrigerators, theaters, and candy stores.

Evolved recipes

Pop is a spice when used in cooking recipes, therefore will not be included in the maximum number of ingredients.

Product Nutrition
Beverage
Beverage
4
Toast
Toast
1

Advertisement for the product:

Pop
♪ Never let the music stop! ♪
♪ Grab, grab, grab a can of... POP! ♪
Have you tried new Orange-Lite Pop?
The ice-cold, all-American taste of pure refreshment!
Quench your thirst!
Energize your being!
♪ Never let the music stop! ♪
♪ Grab, grab, grab a can of... POP! ♪


Code

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

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

Retrieved: Build 41.78.16
item Pop
	{
		DisplayName = Pop,
		DisplayCategory = Food,
		Type = Food,
		Weight = 0.3,
		Icon = Pop,
		EvolvedRecipe = Beverage:4;Beverage2:4,
		FoodType = SoftDrink,
		CantBeFrozen = TRUE,
		EatType = popcan,
		Packaged = TRUE,
		ReplaceOnUse = PopEmpty,
		HungerChange = -8,
		ThirstChange = -60,
		UnhappyChange = -10,
		Calories = 140,
		Carbohydrates = 39,
		Lipids = 0,
		Proteins = 0,
		CustomContextMenu = Drink,
		CustomEatSound = DrinkingFromCan,
		StaticModel = PopCanDiet,
		WorldStaticModel = PopCanDiet,
		Tags = HasMetal,
	}

Pop2.png Base.Pop3
Source: ProjectZomboid\media\scripts\items_food.txt

Retrieved: Build 41.78.16
item Pop2
	{
		DisplayName = Pop,
		DisplayCategory = Food,
		Type = Food,
		Weight = 0.3,
		Icon = Pop2,
		EvolvedRecipe = Beverage:4;Beverage2:4,
		FoodType = SoftDrink,
		CantBeFrozen = TRUE,
		EatType = popcan,
		Packaged = TRUE,
		ReplaceOnUse = Pop2Empty,
		HungerChange = -8,
		ThirstChange = -60,
		UnhappyChange = -10,
		Calories = 140,
		Carbohydrates = 39,
		Lipids = 0,
		Proteins = 0,
		CustomContextMenu = Drink,
		CustomEatSound = DrinkingFromCan,
		StaticModel = PopCanRed,
		WorldStaticModel = PopCanRed,
		Tags = HasMetal,
	}

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

Retrieved: Build 41.78.16
item Pop3
	{
		DisplayName = Pop,
		DisplayCategory = Food,
		Type = Food,
		Weight = 0.3,
		Icon = Pop3,
		EvolvedRecipe = Beverage:4;Beverage2:4,
		FoodType = SoftDrink,
		CantBeFrozen = TRUE,
		EatType = popcan,
		Packaged = TRUE,
		ReplaceOnUse = Pop3Empty,
		HungerChange = -8,
		ThirstChange = -60,
		UnhappyChange = -10,
		Calories = 140,
		Carbohydrates = 39,
		Lipids = 0,
		Proteins = 0,
		CustomContextMenu = Drink,
		CustomEatSound = DrinkingFromCan,
		StaticModel = PopCanFizz,
		WorldStaticModel = PopCanFizz,
		Tags = HasMetal,
	}

PopEmpty.png Base.PopEmpty
Source: ProjectZomboid\media\scripts\newitems.txt

Retrieved: Build 41.78.16
item PopEmpty
    {
        DisplayCategory = Junk,
        Weight	=	0.1,
        Type	=	Normal,
        DisplayName	=	Empty Pop Can,
        Icon	=	PopEmpty,
        MetalValue = 10,
        WorldStaticModel = PopCanDietWorld,
    }

PopEmpty.png Base.Pop2Empty
Source: ProjectZomboid\media\scripts\newitems.txt

Retrieved: Build 41.78.16
item Pop2Empty
    {
        DisplayCategory = Junk,
        Weight	=	0.1,
        Type	=	Normal,
        DisplayName	=	Empty Pop Can,
        Icon	=	PopEmpty,
        MetalValue = 10,
        WorldStaticModel = PopCanRedWorld,
    }

PopEmpty.png Base.Pop3Empty
Source: ProjectZomboid\media\scripts\newitems.txt

Retrieved: Build 41.78.16
item Pop3Empty
    {
        DisplayCategory = Junk,
        Weight	=	0.1,
        Type	=	Normal,
        DisplayName	=	Empty Pop Can,
        Icon	=	PopEmpty,
        MetalValue = 10,
        WorldStaticModel = PopCanFizzWorld,
    }

See also