Choker

From PZwiki
(Redirected from Choker)
UI Tick.png
This page has been revised for the current stable version (41.78.16).
Help by adding any missing content. [edit]
Frame.png
This article contains outdated/low-quality images.
Reason: Missing 3D models
Please help the PZwiki by uploading an improved/updated version of the image(s) found on this page.
Choker
Black Choker
Choker with Sapphire Stone
Choker with Amber Stone
Choker with Diamond
General
Category
Clothing
Encumbrance
Moodle Icon HeavyLoad.png
0.1
Equipped
Necklace_Choker
Technical
Item ID

A choker is a cosmetic item. It has no functionality, and comes in 4 variants.

Body location

Protection Neck.png
  • Neck

Distribution

The loot distributions can be found in the table(s) below.

Containers
Building/Room Container Rolls Chance
departmentstore displaycase 4 6

Buildings

Chokers can be found in jewelry and department stores.

NPCs

Various Zombies can be found wearing chokers as a cosmetic item.

Variants

Icon Name Encumbrance Body location Item ID
Black Choker Black Choker 0.1 Necklace Base.Necklace_Choker
Choker with Sapphire Stone Choker with Sapphire Stone 0.1 Necklace Base.Necklace_Choker_Sapphire
Choker with Amber Stone Choker with Amber Stone 0.1 Necklace Base.Necklace_Choker_Amber
Choker with Diamond Choker with Diamond 0.1 Necklace Base.Necklace_Choker_Diamond

Code

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

Necklace Choker.png Base.Necklace_Choker
Source: ProjectZomboid\media\scripts\clothing\clothing_jewellery.txt

Retrieved: Build 41.78.16
item Necklace_Choker
	{
	    DisplayCategory = Accessory,
		Type = Clothing,
		DisplayName = Black Choker,
		ClothingItem = Necklace_Choker,
		BodyLocation = Neck,
		Icon = Necklace_Choker,
		Weight = 0.1,
		Cosmetic = TRUE,
		WorldStaticModel = Choker_Ground,
	}

Necklace Choker Sapphire.png Base.Necklace_Choker_Sapphire
Source: ProjectZomboid\media\scripts\clothing\clothing_jewellery.txt

Retrieved: Build 41.78.16
item Necklace_Choker_Sapphire
	{
	    DisplayCategory = Accessory,
		Type = Clothing,
		DisplayName = Choker with Sapphire Stone,
		ClothingItem = Necklace_Choker_Sapphire,
		BodyLocation = Neck,
		Icon = Necklace_Choker_Sapphire,
		Weight = 0.1,
		Cosmetic = TRUE,
		WorldStaticModel = Choker_Sapphire_Ground,
	}

Necklace Choker Amber.png Base.Necklace_Choker_Amber
Source: ProjectZomboid\media\scripts\clothing\clothing_jewellery.txt

Retrieved: Build 41.78.16
item Necklace_Choker_Amber
	{
	    DisplayCategory = Accessory,
		Type = Clothing,
		DisplayName = Choker with Amber Stone,
		ClothingItem = Necklace_Choker_Amber,
		BodyLocation = Neck,
		Icon = Necklace_Choker_Amber,
		Weight = 0.1,
		Cosmetic = TRUE,
		WorldStaticModel = Choker_Amber_Ground,
	}

Necklace Choker Diamond.png Base.Necklace_Choker_Diamond
Source: ProjectZomboid\media\scripts\clothing\clothing_jewellery.txt

Retrieved: Build 41.78.16
item Necklace_Choker_Diamond
	{
	    DisplayCategory = Accessory,
		Type = Clothing,
		DisplayName = Choker with Diamond,
		ClothingItem = Necklace_Choker_Diamond,
		BodyLocation = Neck,
		Icon = Necklace_Choker_Diamond,
		Weight = 0.1,
		Cosmetic = TRUE,
		WorldStaticModel = Choker_Diamond_Ground,
	}

See also