Wedding Ring: Difference between revisions

From PZwiki
(Added deletion notice.)
m (Automated CodeBox update)
(25 intermediate revisions by 8 users not shown)
Line 1: Line 1:
{{deletion|This page is a stub, the item in question is not exceptionally notable that it requires it's own page. If no issues are raised this page will be deleted and any useful info will be collapsed into the [[Items]] table. -Connall|speedy=0}}
{{Header|Project Zomboid|Items|Clothing|Accessories|Jewelry}}
{{Page version|41.78.16}}
{{Obsolete|build 41|ring|item=true}}
{{Infobox item
|name=Wedding Ring
|icon=WeddingRing Woman.png
|icon_name=Wedding Ring
|icon2=WeddingRing Man.png
|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
}}
 
A '''wedding ring''' was an [[Items|item]] removed in [[build 41]] when it was replaced by various other [[ring]]s.
 
==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.


{{Items
==Distribution==
|image = Wedding ring stone.png
Wedding rings could be found on corpses and in some stores.
|weight = 0.2
}} <!--/infobox-->
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.
{{Items
|image = Wedding ring solid.png
|weight = 0.2
}}
<!--
== Crafting ==
ITEM NAME can be used in the following recipes:


{| class="wikitable" width="550" style="text-align:center;"
==Gallery==
|-
<gallery>
! Ingredients || Other Items || Output || Description
WeddingRing Spiffo scrnsht.jpg|[[Spiffo]] trying to catch a [[Wikipedia:Sonic the Hedgehog|hedgehog]].
|-
</gallery>
| Ingredient + [[Ingredient]] || None || [[What the recipe makes]] || Brief description of what it makes.
|}
-->


== Code ==
==Code==
<nowiki>
{{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