Necklace: Difference between revisions

From PZwiki
(Created page with "{{Testing|build=Build 41}} {{languages}} {{header|The Game World|Items|Clothing|version=Version 41|incver=56}} {{Infobox clothing | display_name = Necklace | name_colour...")
 
mNo edit summary
Line 1: Line 1:
{{Testing|build=[[Build 41]]}}
{{languages}}
{{languages}}
{{header|The Game World|Items|Clothing|version=Version 41|incver=56}}
{{header|The Game World|Items|Clothing|version=Version 41|incver=56}}

Revision as of 21:24, 21 December 2021

Necklace
Gold Necklace Silver Necklace Pearl Necklace
General
Category Clothing
Encumbrance
Heavy Load
0.1
Body location Necklace
Technical details
Item ID Base.Necklace_Gold
Base.Necklace_Silver
Base.Necklace_Pearl

The necklace is a cosmetic item with no current functionality other than changing the player's appearance.

Item Distribution

Buildings

Necklaces are often stored in homes and apartments around the map.

NPCS

Zombies will sometimes be found wearing necklaces.

Code

From clothing_jewellery.txt (Project Zomboid directory/media/scripts/clothing)

Gold Necklace Retrieved: Build 41.56

   item Necklace_Gold
	{
		Type = Clothing,
		DisplayName = Gold Necklace,
		ClothingItem = Necklace_Gold,
		BodyLocation = Necklace,
		Icon = Necklace_Gold,
		Weight = 0.1,
		Cosmetic = TRUE,
		WorldStaticModel = Necklace_Gold_Ground,
	}

Silver Necklace Retrieved: Build 41.56

   item Necklace_Silver
	{
		Type = Clothing,
		DisplayName = Silver Necklace,
		ClothingItem = Necklace_Silver,
		BodyLocation = Necklace,
		Icon = Necklace_Silver,
		Weight = 0.1,
		Cosmetic = TRUE,
		WorldStaticModel = Necklace_Silver_Ground,
	}

Pearl Necklace Retrieved: Build 41.56

   item Necklace_Pearl
	{
		Type = Clothing,
		DisplayName = Pearl Necklace,
		ClothingItem = Necklace_Pearl,
		BodyLocation = Necklace,
		Icon = Necklacepearl,
		Weight = 0.1,
		Cosmetic = TRUE,
		WorldStaticModel = Necklace_Pearl_Ground,
	}

See also