Water Bottle (Beer): Difference between revisions

From PZwiki
m (Automatic formatting)
m (Automated Formatting)
(3 intermediate revisions by the same user not shown)
Line 18: Line 18:
|item_id=Base.BeerEmpty<br>Base.BeerWaterFull
|item_id=Base.BeerEmpty<br>Base.BeerWaterFull
}}
}}
A '''water bottle''' is an essential [[water]] containing item in [[Project Zomboid]].
A '''water bottle''' is an essential [[water]] containing item in [[Project Zomboid]].


Line 26: Line 25:
==Crafting==
==Crafting==
The empty bottle can be used as a component in crafting.
The empty bottle can be used as a component in crafting.
{{Crafting header|ing=3}}
{{Crafting/sandbox2
{{Crafting general|047|ing=3}}
|smashed_bottle
|}
}}


==Distribution==
==Distribution==
Line 38: Line 37:
{{CodeSnip
{{CodeSnip
   | lang = java
   | lang = java
   | line = false
   | line = true
  | start = 2763
   | source = items_food.txt
   | source = items_food.txt
   | retrieved = true
   | retrieved = true
   | version = 41.66
   | version = 41.78.16
   | code =
   | code =
    item BeerWaterFull
item BeerWaterFull
    {
{
        DisplayCategory = Water,
DisplayName = Water Bottle,
        IsWaterSource = TRUE,
DisplayCategory = Water,
        Weight = 0.4,
Type = Drainable,
        CanStoreWater = TRUE,
Weight = 0.4,
        FillFromDispenserSound = GetWaterFromDispenserGlass,
Icon = BeerBottle,
        FillFromTapSound = GetWaterFromTapGlass,
CanStoreWater = TRUE,
        Type = Drainable,
FillFromDispenserSound = GetWaterFromDispenserGlass,
        UseWhileEquipped = FALSE,
FillFromTapSound = GetWaterFromTapGlass,
        UseDelta = 0.16,
IsCookable = TRUE,
        DisplayName = Water Bottle,
IsWaterSource = TRUE,
        ReplaceOnDeplete = BeerEmpty,
ReplaceOnDeplete = BeerEmpty,
        ReplaceOnUseOn = WaterSource-BeerWaterFull,
ReplaceOnUseOn = WaterSource-BeerWaterFull,
        Icon = BeerBottle,
UseDelta = 0.16,
        StaticModel = BeerBottle,
UseWhileEquipped = FALSE,
        WorldStaticModel = BeerBottle,
CustomEatSound = DrinkingFromBottleGlass,
        CustomEatSound = DrinkingFromBottleGlass,
StaticModel = BeerBottle,
    }
WorldStaticModel = BeerBottle,
}
}}
}}


Line 67: Line 68:
{{CodeSnip
{{CodeSnip
   | lang = java
   | lang = java
   | line = false
   | line = true
  | start = 607
   | source = items.txt
   | source = items.txt
   | retrieved = true
   | retrieved = true
   | version = 41.66
   | version = 41.78.16
   | code =
   | code =
    item BeerEmpty
item BeerEmpty
     {
     {
         DisplayCategory = WaterContainer,
         DisplayCategory = WaterContainer,
         Weight = 0.1,
         Weight = 0.1,
         CanStoreWater = TRUE,
         CanStoreWater = TRUE,
         Type = Normal,
         Type = Normal,
         DisplayName = Empty Bottle,
         DisplayName = Empty Bottle,
         ReplaceOnUseOn = WaterSource-BeerWaterFull,
         ReplaceOnUseOn = WaterSource-BeerWaterFull,
         Icon = Wine2Empty,
         Icon = BeerBottle,
         StaticModel = BeerBottle,
         StaticModel = BeerBottle,
         WorldStaticModel = BeerBottle,
         WorldStaticModel = BeerBottle,
Line 93: Line 95:
*[[White Wine]]
*[[White Wine]]


{{Navbox equipment|containers}}
{{Navbox items|containers}}
{{Navbox food}}

Revision as of 13:14, 14 April 2024

Project ZomboidItemsFoodDrinksWater containersWater Bottle (Beer)
Spiffo controlyourself.png
This page was last updated for an older version (41.66).
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.
Water Bottle
BeerBottle Model.png
Water Bottle
Beer Bottle Beer Bottle
General
Category
Empty: Water Container
Full: Water
Encumbrance
Moodle Icon HeavyLoad.png
Empty: 0.1
Full: 0.4
Function
Smashed Bottle
• Water storage
Properties
Capacity
6.25 units
Technical
Item ID
Base.BeerEmpty
Base.BeerWaterFull

A water bottle is an essential water containing item in Project Zomboid.

Usage

The empty bottle is the resulting product after consuming/emptying a beer bottle (or water). It can be refilled at any water source.

Crafting

The empty bottle can be used as a component in crafting.

Product Ingredients Tools Requirements Workstation XP
BrokenBottle.png
Smashed Bottle
One of:
WineEmpty.png Empty Bottle (disambiguation) ×1
Wine2Empty.png Empty Bottle (disambiguation) ×1
WhiskeyEmpty.png Empty Bottle (disambiguation) ×1
BeerBottle.png Empty Bottle (disambiguation) ×1
none none none none

Distribution

Empty bottles can be found on a zombie corpse or in a garbage bins.

Code

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

BeerBottle.png Water Bottle
Source: ProjectZomboid\media\scripts\items_food.txt

Retrieved: Build 41.78.16
item BeerWaterFull
	{
		DisplayName = Water Bottle,
		DisplayCategory = Water,
		Type = Drainable,
		Weight = 0.4,
		Icon = BeerBottle,
		CanStoreWater = TRUE,
		FillFromDispenserSound = GetWaterFromDispenserGlass,
		FillFromTapSound = GetWaterFromTapGlass,
		IsCookable = TRUE,
		IsWaterSource = TRUE,
		ReplaceOnDeplete = BeerEmpty,
		ReplaceOnUseOn = WaterSource-BeerWaterFull,
		UseDelta = 0.16,
		UseWhileEquipped = FALSE,
		CustomEatSound = DrinkingFromBottleGlass,
		StaticModel = BeerBottle,
		WorldStaticModel = BeerBottle,
	}

BeerBottle.png Empty Bottle
Source: ProjectZomboid\media\scripts\items.txt

Retrieved: Build 41.78.16
item BeerEmpty
    {
        DisplayCategory = WaterContainer,
        Weight	=	0.1,
        CanStoreWater = TRUE,
        Type	=	Normal,
        DisplayName	=	Empty Bottle,
        ReplaceOnUseOn	=	WaterSource-BeerWaterFull,
        Icon	=	BeerBottle,
        StaticModel = BeerBottle,
        WorldStaticModel = BeerBottle,
    }

See also