Beer Can

From PZwiki
Project ZomboidItemsFoodDrinksBeer Can
Spiffo controlyourself.png
This page was last updated for an older version (41.65).
The current stable version is 41.78.16, released 2022-12-12, so information on this page may be inaccurate. Help get this page updated by adding any missing content. [edit]
Please update the version after updating the page.
Beer Can
BeerCan Model.png
General
Category
Food
Encumbrance
Moodle Icon HeavyLoad.png
0.3
Properties
Packaged
True
Nutrition
HungerMoodle Icon Hungry.png
-8
ThirstMoodle Icon Thirsty.png
-13
CaloriesCalories
160
CarbohydratesCarbohydrates
39
ProteinsProteins
0
FatFat
0
Effect
UnhappinessMoodle Icon Unhappy.png
-15
Sterilize powerDisinfection
?
Technical
Item ID
Base.BeerCan

Beer Can, is an alcoholic non-perishable food item.

Usage

Alcohol

Beer Can is an alcoholic beverage, and will therefore increase the player's drunkenness as it is consumed. Being drunk will affect the player's coordination (controls), both on foot and in a vehicle, and weapon accuracy.

Distribution

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

BeerCan distribution Show / Hide
Containers
Building / Room Container Rolls Chance
all Outfit_Biker 1 10.0
all fridge 4 1.0
all fridge 4 4.0
bandkitchen counter 4 10.0
bandkitchen counter 4 20.0
bandkitchen fridge 4 10.0
bandkitchen fridge 4 20.0
bar counter 4 20.0
bar counter 4 10.0
bar fridge 4 20.0
bar fridge 4 10.0
brewery crate 4 10.0
brewery crate 4 20.0
brewery crate 4 50.0
drugshack counter 4 20.0
drugshack counter 4 10.0
kitchen counter 4 2.0
liquorstore crate 4 10.0
liquorstore crate 4 20.0
BeerCanEmpty distribution Show / Hide
Containers
Building / Room Container Rolls Chance
all bin 4 2.0
bar bin 4 10.0
bar bin 4 20.0
motelroomoccupied bin 4 2.0

Beer Can can be found in kitchen and bar counters, or office desks.

Code

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

Source: ProjectZomboid\media\scripts\items_food.txt

Retrieved: Build 41.78.16
item BeerCan
	{
		DisplayName = Beer Can,
		DisplayCategory = Food,
		Type = Food,
		Weight = 0.3,
		Icon = BeerCan,
		EvolvedRecipe = Soup:8;Stew:8;Beer:9;Beer2:9,
		FoodType = Beer,
		Alcoholic = TRUE,
		CantBeFrozen = TRUE,
		EatType = popcan,
		Packaged = TRUE,
		ReplaceOnUse = BeerCanEmpty,
		HungerChange = -8,
		ThirstChange = -13,
		UnhappyChange = -15,
		Calories = 160,
		Carbohydrates = 39,
		Lipids = 0,
		Proteins = 0,
		CustomContextMenu = Drink,
		CustomEatSound = DrinkingFromCan,
		StaticModel = BeerCan,
		WorldStaticModel = BeerCan_Ground,
		Tags = LowAlcohol;HasMetal,
		EvolvedRecipeName = Beer,

	}

See also