Eyepatch

From PZwiki
Revision as of 02:29, 2 February 2022 by Omar (talk | contribs) (Formatting fix)
Eyepatch
Eyepatch
General
Category Clothing
Encumbrance
Heavy Load
0.01
Body location LeftEye
RightEye
Technical details
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

From clothing_others.txt (Project Zomboid directory/media/scripts/clothing)
Eyepatch (Left) Retrieved: Build 41.65

	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) Retrieved: Build 41.65

	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