Beer Bottle

From PZwiki
Project ZomboidItemsFoodDrinksBeer Bottle
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 Bottle
BeerBottle Model.png
General
Category
Food
Encumbrance
Moodle Icon HeavyLoad.png
0.4
Properties
Packaged
True
Nutrition
HungerMoodle Icon Hungry.png
-9
ThirstMoodle Icon Thirsty.png
-13
CaloriesCalories
170
CarbohydratesCarbohydrates
39
ProteinsProteins
0
FatFat
0
Effect
UnhappinessMoodle Icon Unhappy.png
-16
Sterilize powerDisinfection
?
Technical
Item ID
Base.BeerBottle

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

Usage

Alcohol

Beer Bottle 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

Beer Bottle 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 BeerBottle
	{
		DisplayName = Beer Bottle,
		DisplayCategory = Food,
		Type = Food,
		Weight = 0.4,
		Icon = BeerBottle,
		EvolvedRecipe = Soup:9;Stew:9;Beer:9;Beer2:9,
		FoodType = Beer,
		Alcoholic = TRUE,
		CantBeFrozen = TRUE,
		Packaged = TRUE,
		ReplaceOnUse = BeerEmpty,
		HungerChange = -9,
		ThirstChange = -13,
		UnhappyChange = -16,
		Calories = 170,
		Carbohydrates = 39,
		Lipids = 0,
		Proteins = 0,
		CustomContextMenu = Drink,
		CustomEatSound = DrinkingFromBottleGlass,
		StaticModel = BeerBottle,
		WorldStaticModel = BeerBottle,
		Tags = LowAlcohol,
		EvolvedRecipeName = Beer,
	}

See also