Beer Bottle: Difference between revisions

From PZwiki
(update header & categories)
m (Automated Formatting)
(17 intermediate revisions by 3 users not shown)
Line 1: Line 1:
{{Languages}}
{{Header|Project Zomboid|Items|Food|Drinks}}
{{header/sandbox2|Project Zomboid|Items|Food|Drinks}}
{{Page version|41.65}}
{{page version|41.65}}
{{Infobox item
{{Infobox food
|name=Beer Bottle
|display_name=Beer Bottle
|model=BeerBottle_Model.png
|name_colour=Food
|icon=BeerBottle.png
|name_text_colour=Food
|icon_name=Beer Bottle
|image=BeerBottle_Model.png
|image_width=200px
|alternate_image=BeerBottle.png
|alternate_name=Beer Bottle
|alternate_lin=
<!--GENERAL-->
<!--GENERAL-->
|category=Food
|category=Food
|weight=0.4
|weight=0.4
|always_welcome_gift=true
|always_welcome_gift=true
|function=
|packaged=True
|packaged=True
|cant_be_frozen=True
|cant_be_frozen=True
Line 29: Line 23:
|alcohol_power=?
|alcohol_power=?
<!--TECHNICAL DETAILS-->
<!--TECHNICAL DETAILS-->
|class_name={{ID|Base.BeerBottle}}
|item_id={{ID|Base.BeerBottle}}
}}'''Beer Bottle''', is an alcoholic [[Food#Non-Perishable|non-perishable]] food [[item]].  
}}
'''Beer Bottle''', is an alcoholic non-perishable [[food]] [[Items|item]].


==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 [[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.


==Distribution==
==Distribution==
Line 40: Line 35:


==Code==
==Code==
'''''From items_food.txt (Project Zomboid directory/media/scripts/)'''''
{{CodeBox
{{Retrieved|version=41.65}}
| {{CodeSnip
<pre>
  | lang = java
    item BeerBottle
  | line = true
  | start = 3553
  | source = items_food.txt
  | retrieved = true
  | version = 41.78.16
  | code =
item BeerBottle
{
{
    DisplayCategory = Food,
DisplayName = Beer Bottle,
HungerChange = -9,
DisplayCategory = Food,
Weight = 0.4,
Type = Food,
AlwaysWelcomeGift = TRUE,
Weight = 0.4,
Type = Food,
Icon = BeerBottle,
UnhappyChange = -16,
EvolvedRecipe = Soup:9;Stew:9;Beer:9;Beer2:9,
ThirstChange = -13,
FoodType = Beer,
DisplayName = Beer Bottle,
Alcoholic = TRUE,
ReplaceOnUse = BeerEmpty,
CantBeFrozen = TRUE,
Alcoholic = TRUE,
Packaged = TRUE,
Icon = BeerBottle,
ReplaceOnUse = BeerEmpty,
HungerChange = -9,
ThirstChange = -13,
UnhappyChange = -16,
Calories = 170,
Carbohydrates = 39,
Lipids = 0,
Proteins = 0,
CustomContextMenu = Drink,
CustomContextMenu = Drink,
CustomEatSound = DrinkingFromBottleGlass,
CustomEatSound = DrinkingFromBottleGlass,
        Carbohydrates = 39,
StaticModel = BeerBottle,
        Proteins = 0,
WorldStaticModel = BeerBottle,
        Lipids = 0,
Tags = LowAlcohol,
        Calories = 170,
EvolvedRecipeName = Beer,
        Packaged = TRUE,
        CantBeFrozen = TRUE,
        StaticModel = BeerBottle,
        WorldStaticModel = BeerBottle,
}
}
</pre>
}}
}}


==See also==
==See also==
Line 74: Line 79:
*[[White Wine]]
*[[White Wine]]


{{Navbox food}}
{{Navbox items|drinks}}
 
 
[[Category:Non-perishable food]]
[[Category:Non-perishable food]]

Revision as of 06:30, 14 April 2024

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