Eyepatch

From PZwiki
The printable version is no longer supported and may have rendering errors. Please update your browser bookmarks and please use the default browser print function instead.
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.
Eyepatch
Eyepatch Model.png
General
Category
Clothing
Encumbrance
Moodle Icon HeavyLoad.png
0.01
Equipped
LeftEye
RightEye
Technical
Item ID
Base.Glasses_Eyepatch_Left
Base.Glasses_Eyepatch_Right

An eyepatch is a cosmetic item of eyewear which can be worn over either eye.

Usage

An eyepatch provides no insulation or protection, so it is best used as a cosmetic item.

Distribution

An eyepatch can sometimes be found on veteran zombies.

Code

Eyepatch (Left)

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

Source: ProjectZomboid\media\scripts\clothing\clothing_others.txt

Retrieved: Build 41.78.16
item Glasses_Eyepatch_Left
	{
	    DisplayCategory = Accessory,
		Type = Clothing,
		DisplayName = Eyepatch,
		ClothingItem = Glasses_Eyepatch_Left,
		BodyLocation = LeftEye,
		Icon = Eyepatch,
		Weight = 0.01,
		Cosmetic = TRUE,
		ClothingItemExtra = Glasses_Eyepatch_Right,
        ClothingItemExtraOption = EyeRight,
        clothingExtraSubmenu = EyeLeft,
        WorldStaticModel = Eyepatch_Ground,
	}

Eyepatch (Right)

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

Source: ProjectZomboid\media\scripts\clothing\clothing_others.txt

Retrieved: Build 41.78.16
item Glasses_Eyepatch_Right
	{
	    DisplayCategory = Accessory,
		Type = Clothing,
		DisplayName = Eyepatch,
		ClothingItem = Glasses_Eyepatch_Right,
		BodyLocation = RightEye,
		Icon = Eyepatch,
		Weight = 0.01,
		Cosmetic = TRUE,
		ClothingItemExtra = Glasses_Eyepatch_Left,
        ClothingItemExtraOption = EyeLeft,
        clothingExtraSubmenu = EyeRight,
        WorldStaticModel = Eyepatch_Ground,
	}

See also