Key Ring: Difference between revisions

From PZwiki
(ver31.9-)
 
m (Automated Formatting)
(36 intermediate revisions by 12 users not shown)
Line 1: Line 1:
{{languages}}{{Notice|Short}}
{{Header|Project Zomboid|Items|Equipment|Security}}
{{Page version|41.78.16}}
{{Infobox item
|name=Key Ring
|model=KeyRing_Model.png
|icon=KeyRing.png
|icon_name=Key Ring
|category=Container
|weight=0
|capacity={{Tooltip|1|Cannot hold anything other than keys}}
|metal_value=5
|item_id=Base.KeyRing
}}
A '''key ring''' is a container for storing [[Security#Keys|keys]].


{{Consumables
==Usage==
|image = KeyRing.png
A key ring is used to store keys, reducing clutter in the player's inventory. It can only be used to store keys or key related items, including: [[Car Key|car keys]], [[padlock]]s and [[Combination Padlock|combination padlocks]].
|weight = 0
 
}}
===Items it can store===
Door Key[[File:Key1.png]][[File:Key2.png]][[File:Key3.png]][[File:Key4.png]][[File:Key5.png]]
{| class="wikitable theme-red" style="text-align:center;"
Padlock Key [[File:KeyPadlock1.png]]
!Item
<!--
! [[File:Moodle_Icon_HeavyLoad.png|link=Moodles#Heavy Load|Encumbrance]]
== Crafting ==
! Lock/Unlock
{| class="wikitable sortable" style="text-align:center;"
|-
|-
| [[File:Key1.png]][[File:Key2.png]][[File:Key3.png]][[File:Key4.png]][[File:Key5.png]]<br>[[Key|Key (door)]]
! Name
| 0
! class="unsortable" | Recipe
| [[File:DoorKnob.png|link=Doorknob]]
! class="unsortable" | Description
|-
! Crafting Level
| [[File:CarKey.png]]<br>[[Car Key]]
{{RecipeLookup|}}
| 0
| [[Vehicles]]
|-
| [[File:KeyPadlock1.png]]<br>[[Key (Padlock)]]
| 0
| [[File:Padlock.png|link=Padlock]]
|-
| [[File:Padlock.png]]<br>[[Padlock]]
| 0.2
| [[File:Wooden Crate1.png|link=Wooden Crate|32px]][[File:Wooden Crate2.png|link=Wooden Crate|32px]][[File:MetalCrate.png|link=Metal Crate|32px]]
|-
| [[File:PadlockDigital.png]]<br>[[Combination Padlock]]
| 0.2
| [[File:Wooden Crate1.png|link=Wooden Crate|32px]][[File:Wooden Crate2.png|link=Wooden Crate|32px]][[File:MetalCrate.png|link=Metal Crate|32px]]
|}
|}
-->
 
== Code ==
==Distribution==
<nowiki>item KeyRing
The loot distributions can be found in the table(s) below.
 
{| class="mw-collapsible mw-collapsed wikitable theme-red" data-expandtext="{{int:show}}" data-collapsetext="{{int:hide}}" style="text-align:center; min-width:24em;"
! colspan="4" | Containers
|-
! Building/Room
! Container
! style="width: 3.2em;" | Rolls
! style="width: 3.2em;" | Chance
|-
|clothingstore
|[[displaycase]]
|4
|4
|}Every character will start with a key ring, therefore it can be found on every [[zombie]]. It has a 40% chance to spawn with the key to the house the character started in.
 
==Code==
{{CodeBox
| {{CodeSnip
  | lang = java
  | line = true
  | start = 2954
  | source = newitems.txt
  | retrieved = true
  | version = 41.78.16
  | code =
item KeyRing
     {
     {
        DisplayCategory = Container,
         Weight = 0,
         Weight = 0,
         Type = Container,
         Type = Container,
Line 27: Line 80:
         Capacity = 1,
         Capacity = 1,
         OnlyAcceptCategory = Key,
         OnlyAcceptCategory = Key,
     }</nowiki>
        MetalValue = 5,
        WorldStaticModel = KeyRing_Ground,
     }
}}
}}


== History ==
==History==
 
{| class="wikitable theme-red" width="550" style="text-align: center;"
{| class="wikitable" width="550" style="text-align:center;"
|-
! colspan="2" | Alpha
|-
| Ver31.9 || Added to game.
|-
|-
! Alpha ||
| Ver35.26 || Now only a 40% chance to spawn with your house key.
|-
|-
| Ver31.9 || -
|}
|}


==See Also==
==See also==
* [[Padlock]]
*[[Key]]
 
*[[Key (Padlock)]]
*[[Padlock]]


[[Category:Wearable containers]]


<!--
{{Navbox items|containers}}
{{Navbox/Consumables}}
-->

Revision as of 09:32, 14 April 2024

UI Tick.png
This page has been revised for the current stable version (41.78.16).
Help by adding any missing content. [edit]
Key Ring
KeyRing Model.png
General
Category
Container
Encumbrance
Moodle Icon HeavyLoad.png
0
Properties
Capacity
1
Technical
Item ID
Base.KeyRing

A key ring is a container for storing keys.

Usage

A key ring is used to store keys, reducing clutter in the player's inventory. It can only be used to store keys or key related items, including: car keys, padlocks and combination padlocks.

Items it can store

Item Encumbrance Lock/Unlock
Key1.pngKey2.pngKey3.pngKey4.pngKey5.png
Key (door)
0 DoorKnob.png
CarKey.png
Car Key
0 Vehicles
KeyPadlock1.png
Key (Padlock)
0 Padlock.png
Padlock.png
Padlock
0.2 Wooden Crate1.pngWooden Crate2.pngMetalCrate.png
PadlockDigital.png
Combination Padlock
0.2 Wooden Crate1.pngWooden Crate2.pngMetalCrate.png

Distribution

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

Containers
Building/Room Container Rolls Chance
clothingstore displaycase 4 4

Every character will start with a key ring, therefore it can be found on every zombie. It has a 40% chance to spawn with the key to the house the character started in.

Code

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

Source: ProjectZomboid\media\scripts\newitems.txt

Retrieved: Build 41.78.16
item KeyRing
    {
        DisplayCategory = Container,
        Weight	=	0,
        Type	=	Container,
        DisplayName	=	Key Ring,
        Icon	=	KeyRing,
        Capacity	=	1,
        OnlyAcceptCategory = Key,
        MetalValue = 5,
        WorldStaticModel = KeyRing_Ground,
    }

History

Alpha
Ver31.9 Added to game.
Ver35.26 Now only a 40% chance to spawn with your house key.

See also