Goggles

From PZwiki
(Redirected from Goggles)
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.
Frame.png
This article contains outdated/low-quality images.
Reason: Missing Variant Models
Please help the PZwiki by uploading an improved/updated version of the image(s) found on this page.
Goggles
SkiGogglesWhite Model.png
Ski Goggles (Black)
Ski Goggles (White)
Swimming Goggles
General
Category
Clothing
Encumbrance
Moodle Icon HeavyLoad.png
0.1
Equipped
Eyes
Technical
Item ID

Goggles are a cosmetic item of eyewear.

Distribution

Buildings

Goggles are common around Knox Country, often found in clothing stores.

NPCs

Glasses are frequently found on zombie civilians.

Variants

Icon Name Base ID
Safety Goggles Safety Goggles Base.Glasses_SafetyGoggles
Ski Goggles (Black)Ski Goggles (White) Ski Goggles Base.Glasses_SkiGoggles
Swimming Goggles Swimming Goggles Base.Glasses_SwimmingGoggles

Code

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

SafetyGoggles.png Base.Glasses_SafetyGoggles
Source: ProjectZomboid\media\scripts\clothing\clothing_others.txt

Retrieved: Build 41.78.16
item Glasses_SafetyGoggles
	{
	    DisplayCategory = Accessory,
		Type = Clothing,
		DisplayName = Safety Goggles,
		ClothingItem = Glasses_SafetyGoggles,
		BodyLocation = Eyes,
		Icon = SafetyGoggles,
		Weight = 0.1,
		Cosmetic = TRUE,
		ChanceToFall = 20,
	}

SkiGogglesBlack.png Base.Glasses_SkiGoggles
Source: ProjectZomboid\media\scripts\clothing\clothing_others.txt

Retrieved: Build 41.78.16
item Glasses_SkiGoggles
	{
	    DisplayCategory = Accessory,
		Type = Clothing,
		DisplayName = Ski Goggles,
		ClothingItem = Glasses_SkiGoggles,
		BodyLocation = Eyes,
		IconsForTexture = SkiGogglesBlack;SkiGogglesWhite,
		Weight = 0.1,
		Cosmetic = TRUE,
		ChanceToFall = 20,
	}

SwimmingGoggles.png Base.Glasses_SwimmingGoggles
Source: ProjectZomboid\media\scripts\clothing\clothing_others.txt

Retrieved: Build 41.78.16
item Glasses_SwimmingGoggles
	{
	    DisplayCategory = Accessory,
		Type = Clothing,
		DisplayName = Swimming Goggles,
		ClothingItem = Glasses_SwimmingGoggles,
		BodyLocation = Eyes,
		Icon = SwimmingGoggles,
		Weight = 0.1,
		Cosmetic = TRUE,
		ChanceToFall = 30,
	}

See also