Goggles: Difference between revisions

From PZwiki
m (→‎top: category project: "The Game World")
m (Reupload, minor fixes)
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
Line 22: Line 23:
}}
}}
'''Goggles''' are a cosmetic item of eyewear.
'''Goggles''' are a cosmetic item of eyewear.
__TOC__


==Distribution==
==Distribution==
Line 33: Line 32:


==Variants==
==Variants==
{| class="wikitable theme-red" style="text-align:center;"
{| class="wikitable theme-red" style="text-align: center;"
! Icon
! Icon
! Name
! Name
Line 49: Line 48:
| Swimming Goggles
| Swimming Goggles
| {{ID|Base.Glasses_SwimmingGoggles}}
| {{ID|Base.Glasses_SwimmingGoggles}}
|-
|}
|}


== Code ==
==Code==
[[File:SafetyGoggles.png|Safety Goggles]] ''Safety Goggles''
[[File:SafetyGoggles.png|Safety Goggles]] ''Safety Goggles''
{{CodeBox
{{CodeBox
Line 123: Line 121:


==See also==
==See also==
* [[Glasses]]
*[[Glasses]]


{{Navbox clothing}}
{{Navbox clothing}}

Revision as of 19:12, 12 January 2024

Frame.png
This article contains outdated/low-quality images.
Reason: Missing 3D model
Please help the PZwiki by uploading an improved/updated version of the image(s) found on this page.
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