Beer Bottle: Difference between revisions

From PZwiki
(added model image)
m (Cleanup)
Line 1: Line 1:
{{languages}}
{{Languages}}{{Header|Project Zomboid|Items|Food|Non-Perishable Food|type=Food|version=Version 41|incver=65}}{{Infobox food
{{header|Project Zomboid|Items|Food|Non-Perishable Food|type=Food|version=Version 41|incver=65}}{{Infobox food
|display_name=Beer Bottle
|display_name=Beer Bottle
|name_colour=Food
|name_colour=Food
Line 31: 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.
Line 37: Line 37:
Beer Bottle can be found in kitchen and bar [[Containers#Counters|counters]], or [[Containers#Desks|office desks]].
Beer Bottle can be found in kitchen and bar [[Containers#Counters|counters]], or [[Containers#Desks|office desks]].


== Code ==
==Code==
'''''From items_food.txt (Project Zomboid directory/media/scripts/)'''''
'''''From items_food.txt (Project Zomboid directory/media/scripts/)'''''
{{Retrieved|version=41|incver=65}}
{{Retrieved|version=41|incver=65}}
<pre>   item BeerBottle
<pre>
    item BeerBottle
{
{
    DisplayCategory = Food,
    DisplayCategory = Food,
Line 63: Line 64:
         StaticModel = BeerBottle,
         StaticModel = BeerBottle,
         WorldStaticModel = BeerBottle,
         WorldStaticModel = BeerBottle,
}</pre>
}
</pre>


==See also==
==See also==
*[[Chardonnay]]
*[[Beer Can]]
*[[White Wine]]
*[[Red Wine]]
*[[Red Wine]]
*[[Beer Can]]


{{Navbox/Consumables}}
{{Navbox food}}

Revision as of 23:31, 25 February 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