Wedding Ring: Difference between revisions

From PZwiki
m (Vaileasys moved page Wedding Ring to Wedding Ring over redirect: official display name)
m (Automated CodeBox update)
(22 intermediate revisions by 6 users not shown)
Line 1: Line 1:
{{languages|Wedding ring}}
{{Header|Project Zomboid|Items|Clothing|Accessories|Jewelry}}
{{Items
{{Page version|41.78.16}}
|image = Wedding ring stone.png  
{{Obsolete|build 41|ring|item=true}}
|weight = 0.2
{{Infobox item
}} <!--/infobox-->
|name=Wedding Ring
A very rare jewelry item found on corpses. No known use. Comes in two variations, one with the diamond, and one as a gold ring without the diamond on it. The one with the diamond on it is probably meant for the woman and the one without the diamond is more likely to be meant for the man.
|icon=WeddingRing Woman.png
{{Items
|icon_name=Wedding Ring
|image = Wedding ring solid.png
|icon2=WeddingRing Man.png
|weight = 0.2
|icon_name2=Wedding Ring
|category=Accessory
|weight=0.2
|function=''None''
|material=Metal
|material_value=15
|item_id=Base.WeddingRing_Man
|item_id2=Base.WeddingRing_Woman
}}
}}
<!--
== Crafting ==
ITEM NAME can be used in the following recipes:


{| class="wikitable" width="550" style="text-align:center;"
A '''wedding ring''' was an [[Items|item]] removed in [[build 41]] when it was replaced by various other [[ring]]s.
|-
! Ingredients || Other Items || Output || Description
|-
| Ingredient + [[Ingredient]] || None || [[What the recipe makes]] || Brief description of what it makes.
|}
-->


== Code ==
==Usage==
<nowiki>
Wedding rings were a jewelry item that had no use, being added purely for the purpose of clutter, creating more realism for the [[player]] when looting. There are two variations, one with the diamond, and one as a gold ring without the diamond on it. The one with the diamond is for the woman and the one without the diamond is for the man.
 
==Distribution==
Wedding rings could be found on corpses and in some stores.
 
==Gallery==
<gallery>
WeddingRing Spiffo scrnsht.jpg|[[Spiffo]] trying to catch a [[Wikipedia:Sonic the Hedgehog|hedgehog]].
</gallery>
 
==Code==
{{CodeBox|[[File:WeddingRing_Man.png]] {{ID|WeddingRing_Man}}<br>
{{CodeSnip
  | lang = java
  | line = true
  | start = 1921
  | source = newitems.txt
  | retrieved = true
  | version = 41.78.16
  | code =
item WeddingRing_Man
item WeddingRing_Man
{
{
    DisplayCategory = Accessory,
Weight = 0.2,
Weight = 0.2,
Type = Normal,
Type = Normal,
DisplayName = Wedding Ring,
DisplayName = Wedding Ring,
Icon = WeddingRing_Man,
Icon = WeddingRing_Man,
}
MetalValue = 15,
OBSOLETE = TRUE,
}
}}


item WeddingRing_Woman
[[File:WeddingRing_Woman.png]] {{ID|WeddingRing_Woman}}<br>
{{CodeSnip
  | lang = java
  | line = true
  | start = 1932
  | source = newitems.txt
  | retrieved = true
  | version = 41.78.16
  | code =
item WeddingRing_Woman
{
{
    DisplayCategory = Accessory,
Weight = 0.2,
Weight = 0.2,
Type = Normal,
Type = Normal,
DisplayName = Wedding Ring,
DisplayName = Wedding Ring,
Icon = WeddingRing_Woman,
Icon = WeddingRing_Woman,
}</nowiki>
MetalValue = 15,
[[Category:items]]
OBSOLETE = TRUE,
}
}}
}}
 
==See also==
*[[Earrings]]
*[[Necklace]]
*[[Ring]]

Revision as of 13:58, 26 March 2024

UI Tick.png
This page has been revised for the current stable version (41.78.16).
Help by adding any missing content. [edit]
BoxSmall.png
This item has been removed from the game in build 41.
It has been replaced by ring.
Wedding Ring
Wedding Ring
Wedding Ring
General
Category
Accessory
Encumbrance
Moodle Icon HeavyLoad.png
0.2
Function
None
Properties
Material
Metal
Metal quantity
15
Technical
Item ID
Base.WeddingRing_Man
Base.WeddingRing_Woman

A wedding ring was an item removed in build 41 when it was replaced by various other rings.

Usage

Wedding rings were a jewelry item that had no use, being added purely for the purpose of clutter, creating more realism for the player when looting. There are two variations, one with the diamond, and one as a gold ring without the diamond on it. The one with the diamond is for the woman and the one without the diamond is for the man.

Distribution

Wedding rings could be found on corpses and in some stores.

Gallery

Code

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

WeddingRing Man.png WeddingRing_Man
Source: ProjectZomboid\media\scripts\newitems.txt

Retrieved: Build 41.78.16
item WeddingRing_Man
	{
	    DisplayCategory = Accessory,
		Weight	=	0.2,
		Type	=	Normal,
		DisplayName	=	Wedding Ring,
		Icon	=	WeddingRing_Man,
		MetalValue = 15,
		OBSOLETE = TRUE,
	}

WeddingRing Woman.png WeddingRing_Woman
Source: ProjectZomboid\media\scripts\newitems.txt

Retrieved: Build 41.78.16
item WeddingRing_Woman
	{
	    DisplayCategory = Accessory,
		Weight	=	0.2,
		Type	=	Normal,
		DisplayName	=	Wedding Ring,
		Icon	=	WeddingRing_Woman,
		MetalValue = 15,
		OBSOLETE = TRUE,
	}

See also