Beer Bottle: Difference between revisions

From PZwiki
m (→‎See also: Change order of wines)
m (200px)
Line 4: Line 4:
|name_text_colour=Food
|name_text_colour=Food
|image=BeerBottle_Model.png
|image=BeerBottle_Model.png
|image_width=300px
|image_width=200px
|alternate_image=BeerBottle.png
|alternate_image=BeerBottle.png
|alternate_name=Beer Bottle
|alternate_name=Beer Bottle
Line 30: Line 30:


==Usage==
==Usage==
===Alcohol===
===Alcohol===
Beer Bottle is an alcoholic beverage, and will therefore increase the player's [[Moodles#Drunk|drunkenness]] as it is consumed. Being drunk will affect the player's coordination ([[controls]]), both on foot and in a [[vehicles|vehicle]], and [[weapon]] accuracy.
Beer Bottle is an alcoholic beverage, and will therefore increase the player's [[Moodles#Drunk|drunkenness]] as it is consumed. Being drunk will affect the player's coordination ([[controls]]), both on foot and in a [[vehicles|vehicle]], and [[weapon]] accuracy.

Revision as of 19:50, 22 June 2023

Beer Bottle
Beer Bottle
Beer Bottle
General
Category Food
Encumbrance
Heavy Load
0.4
Can't be frozen True
Packaged True
Nutrition
Hunger
Hunger
-9
Thirst
Thirst
-13
Calories
Calories
170
Carbohydrates
Carbohydrates
39
Proteins
Proteins
0
Fat
Fat
0
Effect
Unhappiness
Unhappiness
-16
Alcohol
Drunk
?
Technical details
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

From items_food.txt (Project Zomboid directory/media/scripts/) Retrieved: Build 41.65

    item BeerBottle
	{
	    DisplayCategory = Food,
		HungerChange	=	-9,
		Weight	=	0.4,
		AlwaysWelcomeGift	=	TRUE,
		Type	=	Food,
		UnhappyChange	=	-16,
		ThirstChange	=	-13,
		DisplayName	=	Beer Bottle,
		ReplaceOnUse	= BeerEmpty,
		Alcoholic	=	TRUE,
		Icon	=	BeerBottle,
		CustomContextMenu = Drink,
		CustomEatSound = DrinkingFromBottleGlass,
        Carbohydrates = 39,
        Proteins = 0,
        Lipids = 0,
        Calories = 170,
        Packaged = TRUE,
        CantBeFrozen = TRUE,
        StaticModel = BeerBottle,
        WorldStaticModel = BeerBottle,
	}

See also