Key Ring: Difference between revisions

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


Line 57: Line 55:
! style="width: 3.2em;" | Chance
! style="width: 3.2em;" | Chance
|-
|-
|clothingstore  
|clothingstore
|[[displaycase]]  
|[[displaycase]]
|4  
|4
|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.
|}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.
Line 68: Line 66:
   | lang = java
   | lang = java
   | line = true
   | line = true
   | start =
   | start = 2954
   | source = newitems.txt
   | source = newitems.txt
   | retrieved = true
   | retrieved = true
   | version = 41.78.16
   | version = 41.78.16
   | code =
   | code =
item KeyRing
item KeyRing
     {
     {
         DisplayCategory = Container,
         DisplayCategory = Container,
Line 85: Line 83:
         WorldStaticModel = KeyRing_Ground,
         WorldStaticModel = KeyRing_Ground,
     }
     }
  }}
}}
}}
}}


Line 106: Line 104:
[[Category:Wearable containers]]
[[Category:Wearable containers]]


{{Navbox equipment|containers}}
{{Navbox items|containers}}

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