Toggle menu
Toggle personal menu
Not logged in
Your IP address will be publicly visible if you make any edits.

Gold Bangle

From PZwiki
(Redirected from Gold Bangle)
UI Tick.png
This page has been revised for the current stable version (41.78.16).
Help by adding any missing content. [edit]
Gold Bangle
BangleGold Model.png
General
Category
Clothing
Encumbrance
Moodle Icon HeavyLoad.png
0.1
Equipped
Wrist
Technical
Item ID
Bracelet_BangleRightGold
Bracelet_BangleLeftGold

A gold bangle is a jewelry item. It has no functionality.

Location

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

Bracelet_BangleRightGold distributionShow / Hide

Effective chance calculations are based off of default 'apocalypse' loot settings, with no luck modifier, and average zombie density. The higher the density of zombies in an area, the higher the effective chance of an item spawning. Chance is also influenced by the lucky and unlucky traits. Duplicate entries do exist, but have been removed for clarity.

Containers
Building/Room Container Effective chance
all plankstash 11.21%
departmentstore displaycase 15.52%
jewelrystorage crate 11.21%
jewelrystorage metal_shelves 11.21%
jewelrystore displaycase 15.52%
pawnshopoffice crate 11.21%
Outfit
Outfit Probability GUID
Classy (female) 50% 7cc96266-836c-45a5-8ebf-091b315693c2
Dress Long (female) 50% 7cc96266-836c-45a5-8ebf-091b315693c2
Dress Normal (female) 50% 7cc96266-836c-45a5-8ebf-091b315693c2
Dress Short (female) 50% 7cc96266-836c-45a5-8ebf-091b315693c2
Joan (female) 100% 32620c89-b2b7-4ba6-8917-bc58c44ce28d
Trader (female) 50% ba6666c1-0cc7-46c6-918a-c401df939b12
Wedding Dress (female) 100% 3a84f224-a86a-4fcc-a01e-0a7fb843be06
Foraging
Amount Skill level Biome: chance Weather modifiers % Month modifiers
Snow Rain Day Night Months available Bonus months Malus months
1 0 Nav: 1
TownZone: 1
TrailerPark: 1
Vegitation: 1
- - - - - - -

Remove from world

As bangles can often create clutter on a multiplayer server, they can be removed by editing the SandboxVars.lua file and adding the following to the WorldItemRemovalList:

Base.Bracelet_BangleRightGold,Base.Bracelet_BangleLeftGold,Base.Bracelet_BangleRightSilver,Base.Bracelet_BangleLeftSilver

Variants

History

Base.Bracelet_BangleRightGold

Version Description
Build 41.65 DisplayCategory added with value Accessory.
Build 41.54 WorldStaticModel added with value Bracelet_Bangle_Ground.
Build 41.40 Released on this version.

Base.Bracelet_BangleLeftGold

Version Description
Build 41.65 DisplayCategory added with value Accessory.
Build 41.54 WorldStaticModel added with value Bracelet_Bangle_Ground.
Build 41.40 Released on this version.

Code

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

Base.Bracelet_BangleRightGold
Source: ProjectZomboid\media\scripts\clothing\clothing_jewellery.txt

Retrieved: Build 41.78.16
item Bracelet_BangleRightGold
	{
	    DisplayCategory = Accessory,
		Type = Clothing,
		DisplayName = Gold Bangle,
		ClothingItem = Bracelet_BangleRightGold,
		BodyLocation = RightWrist,
		Icon = Bracelet_Bangle,
		Weight = 0.1,
        ClothingItemExtra = Bracelet_BangleLeftGold,
        ClothingItemExtraOption = LeftWrist,
        clothingExtraSubmenu = RightWrist,
		Cosmetic = TRUE,
		WorldStaticModel = Bracelet_Bangle_Ground,
	}

Base.Bracelet_BangleLeftGold
Source: ProjectZomboid\media\scripts\clothing\clothing_jewellery.txt

Retrieved: Build 41.78.16
item Bracelet_BangleLeftGold
	{
	    DisplayCategory = Accessory,
		Type = Clothing,
		DisplayName = Gold Bangle,
		ClothingItem = Bracelet_BangleLeftGold,
		BodyLocation = LeftWrist,
		Icon = Bracelet_Bangle,
		Weight = 0.1,
        ClothingItemExtra = Bracelet_BangleRightGold,
        ClothingItemExtraOption = RightWrist,
        clothingExtraSubmenu = LeftWrist,
		Cosmetic = TRUE,
		WorldStaticModel = Bracelet_Bangle_Ground,
	}

See also