Goggles: Difference between revisions

From PZwiki
m (Reupload, minor fixes)
(Added 3d Model and removed reupload tag)
Line 1: Line 1:
{{Languages}}
{{Languages}}
{{Header|Project Zomboid|Items|Clothing|version=Version 41|incver=65}}
{{Header|Project Zomboid|Items|Clothing|version=Version 41|incver=65}}
{{Reupload|Missing 3D model}}
{{Infobox clothing
{{Infobox clothing
| display_name = Goggles
| display_name = Goggles
| name_colour = Clothing
| name_colour = Clothing
| name_text_colour = Clothing
| name_text_colour = Clothing
| image=SkiGogglesWhite_Model.png
| alternate_image = SafetyGoggles.png
| alternate_image = SafetyGoggles.png
| alternate_name = Safety Goggles
| alternate_name = Safety Goggles

Revision as of 04:02, 13 January 2024

Goggles
Goggles
Safety Goggles Ski Goggles (Black) Ski Goggles (White) Swimming Goggles
General
Category Clothing
Encumbrance
Heavy Load
0.1
Body location Eyes
Technical details
Item ID See Variants

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

Safety Goggles Safety Goggles

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

Source: ProjectZomboid\media\scripts\Retrieved clothing item

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

Ski Goggles (Black) Ski Goggles

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

Source: ProjectZomboid\media\scripts\Retrieved clothing item

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,
}

Swimming Goggles Swimming Goggles

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

Source: ProjectZomboid\media\scripts\Retrieved clothing item

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