Eyepatch: Difference between revisions

From PZwiki
(Created page with "{{languages}} {{header|The Game World|Items|Clothing|version=Version 41|incver=65}} {{Infobox clothing | display_name = Eyepatch | name_colour = Clothing | name_text_colour =...")
 
m (Formatting fix)
Line 15: Line 15:
| no_style =
| no_style =
}}
}}
An ''eyepatch'' is a cosmetic item of eyewear which can be worn over either eye.
An '''eyepatch''' is a cosmetic item of eyewear which can be worn over either eye.


__TOC__
__TOC__

Revision as of 02:29, 2 February 2022

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