Belly Button Ring

From PZwiki
(Redirected from Belly Button Ring)
Project ZomboidItemsClothingAccessoriesJewelryBelly Button Ring
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.
Belly Button Ring
Belly Button Dangle Gold
Belly Button Dangle Gold Ruby
Belly Button Ring Gold
Belly Button Ring Gold Diamond
Belly Button Ring Gold Ruby
Belly Button Stud Gold
Belly Button Stud Gold Diamond
Belly Button Dangle Silver
Belly Button Dangle Silver Diamond
Belly Button Ring Silver
Belly Button Ring Silver Amethyst
Belly Button Ring Silver Diamond
Belly Button Ring Silver Ruby
Belly Button Stud Silver
Belly Button Stud Silver Diamond
General
Category
Clothing
Encumbrance
Moodle Icon HeavyLoad.png
0.1
Equipped
Nose File:Moodle heavyLoad.png
Technical
Item ID

A belly button ring is a cosmetic item. It has no functionality.

Distribution

Buildings

See more: Businesses

Belly button rings are often stored in homes and apartments around the map.

NPCs

See more: NPC

Zombies will sometimes be found wearing belly button rings.

Remove from world

As belly button rings 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.BellyButton_DangleGold,Base.BellyButton_DangleGoldRuby,Base.BellyButton_DangleSilver,Base.BellyButton_DangleSilverDiamond,Base.BellyButton_RingGold,Base.BellyButton_RingGoldDiamond,Base.BellyButton_RingGoldRuby,Base.BellyButton_RingSilver,Base.BellyButton_RingSilverAmethyst,Base.BellyButton_RingSilverDiamond,Base.BellyButton_RingSilverRuby,Base.BellyButton_StudGold,Base.BellyButton_StudGoldDiamond,Base.BellyButton_StudSilver,Base.BellyButton_StudSilverDiamond

Variants

Icon Name Encumbrance Body location Item ID
Belly Button Dangle Gold Belly Button Dangle Gold 0.1 BellyButton Base.BellyButton_DangleGold
Belly Button Dangle Gold Ruby Belly Button Dangle Gold Ruby 0.1 BellyButton Base.BellyButton_DangleGoldRuby
Belly Button Dangle Silver Belly Button Dangle Silver 0.1 BellyButton Base.BellyButton_DangleSilver
Belly Button Dangle Silver Diamond Belly Button Dangle Silver Diamond 0.1 BellyButton Base.BellyButton_DangleSilverDiamond
Belly Button Ring Gold Belly Button Ring Gold 0.1 BellyButton Base.BellyButton_RingGold
Belly Button Ring Gold Diamond Belly Button Ring Gold Diamond 0.1 BellyButton Base.BellyButton_RingGoldDiamond
Belly Button Ring Gold Ruby Belly Button Ring Gold Ruby 0.1 BellyButton Base.BellyButton_RingGoldRuby
Belly Button Ring Silver Belly Button Ring Silver 0.1 BellyButton Base.BellyButton_RingSilver
Belly Button Ring Silver Amethyst Belly Button Ring Silver Amethyst 0.1 BellyButton Base.BellyButton_RingSilverAmethyst
Belly Button Ring Silver Diamond Belly Button Ring Silver Diamond 0.1 BellyButton Base.BellyButton_RingSilverDiamond
Belly Button Ring Silver Ruby Belly Button Ring Silver Ruby 0.1 BellyButton Base.BellyButton_RingSilverRuby
Belly Button Stud Gold Belly Button Stud Gold 0.1 BellyButton Base.BellyButton_StudGold
Belly Button Stud Gold Diamond Belly Button Stud Gold Diamond 0.1 BellyButton Base.BellyButton_StudGoldDiamond
Belly Button Stud Silver Belly Button Stud Silver 0.1 BellyButton Base.BellyButton_StudSilver
Belly Button Stud Silver Diamond Belly Button Stud Silver Diamond 0.1 BellyButton Base.BellyButton_StudSilverDiamond

Code

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

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

Retrieved: Build 41.78.16
item BellyButton_DangleGold
	{
	    DisplayCategory = Accessory,
		Type = Clothing,
		DisplayName = Belly Button Dangle Gold,
		ClothingItem = BellyButton_DangleGold,
		BodyLocation = BellyButton,
		Icon = NoseRing_Gold,
		Weight = 0.1,
		Cosmetic = TRUE,
	}

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

Retrieved: Build 41.78.16
item BellyButton_DangleGoldRuby
	{
	    DisplayCategory = Accessory,
		Type = Clothing,
		DisplayName = Belly Button Dangle Gold Ruby,
		ClothingItem = BellyButton_DangleGoldRuby,
		BodyLocation = BellyButton,
		Icon = NoseRing_Gold,
		Weight = 0.1,
		Cosmetic = TRUE,
	}

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

Retrieved: Build 41.78.16
item BellyButton_DangleSilver
	{
	    DisplayCategory = Accessory,
		Type = Clothing,
		DisplayName = Belly Button Dangle Silver,
		ClothingItem = BellyButton_DangleSilver,
		BodyLocation = BellyButton,
		Icon = NoseRing_Silver,
		Weight = 0.1,
		Cosmetic = TRUE,
	}

See also