Eyepatch

From PZwiki
UI Tick.png
This page has been revised for the current stable version (41.78.16).
Help by adding any missing content. [edit]
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.

Location

An eyepatch can sometimes be found on veteran zombies.

History

Base.Glasses_Eyepatch_Left

Version Description
41.78.16 Released on or before this version.

Help PZwiki by adding to this history.

Base.Glasses_Eyepatch_Right

Version Description
41.78.16 Released on or before this version.

Help PZwiki by adding to this history.

Code

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

Eyepatch (Left)
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)
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