Purse: Difference between revisions

From PZwiki
m (→‎Usage: minor)
m (Remove lines))
 
(5 intermediate revisions by 2 users not shown)
Line 3: Line 3:
{{Infobox item
{{Infobox item
|name=Purse
|name=Purse
|name_colour=Container
|name_text_colour=Container
|model=Purse_Model.png
|model=Purse_Model.png
|icon= Purse.png
|icon=Purse.png
|icon_name= Purse
|icon_name=Purse
|category=Container
|category=Container
|weight=0.5
|weight=0.5
Line 15: Line 13:
|item_id=Base.Purse
|item_id=Base.Purse
}}
}}
A '''purse''' is a container [[Items|item]].
A '''purse''' is a container [[Items|item]].


Line 22: Line 19:


'''Purses can spawn with:'''
'''Purses can spawn with:'''
<div style="column-width: 200px;">
<div style="column-width: 200px; column-count: 3; margin: 0;">
*[[File:IckySticks.png|link=Cigarettes]] [[Cigarettes]]
*[[File:IckySticks.png|link=Cigarettes]] [[Cigarettes]]
*[[File:Comb.png|link=Comb]] [[Comb]]
*[[File:Comb.png|link=Comb]] [[Comb]]
Line 133: Line 130:
   | version = 41.78.16
   | version = 41.78.16
   | code =
   | code =
item Purse
item Purse
     {
     {
         DisplayCategory = Container,
         DisplayCategory = Container,
Line 150: Line 147:
         WorldStaticModel = Purse_Ground,
         WorldStaticModel = Purse_Ground,
     }
     }
  }}
}}
}}
}}


Line 156: Line 153:
*[[Bags]]
*[[Bags]]


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

Latest revision as of 07:19, 15 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]
Purse
Purse Model.png
General
Category
Container
Encumbrance
Moodle Icon HeavyLoad.png
0.5 (empty)
5.55 (full)
Equipped
One-handed
Properties
Capacity
12
Technical
Item ID
Base.Purse

A purse is a container item.

Usage

A purse cannot be equipped on the player's back. It has capacity and encumbrance reduction similar to the school bag and the highest encumbrance reduction of all the non-wearable bags. To access its contents, it must be equipped in one of the player's hands.

Purses can spawn with:

Distribution

It can usually be found inside stores, particularly those that may typically be popular for females, such as clothing stores.

Buildings

Building/Room Container Rolls Chance
All Clothing Rack 3 7
Female Corpse 1 0.1
Clothes Store Shelf 3 7
Clothing Rack 3 7
Laundry Counter 3 3
Shoe Store Shelf 3 3
Gift Store Shelf 3 4
Display Case 3 4
Department Store Shelves 3 7

Vehicles

Profession Container Rolls Chance
All Trunk 2 3
Clothing Trunk 3 7
Taxi Trunk 1 3

Trivia

  • The model of purse has a PZ written on the clamp, as an easter egg for Project Zomboid.

Code

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

Source: ProjectZomboid\media\scripts\clothing\clothing_bags.txt

Retrieved: Build 41.78.16
item Purse
    {
        DisplayCategory = Container,
        WeightReduction	=	55,
        Weight	=	0.5,
        Type	=	Container,
        Capacity	=	12,
        DisplayName	=	Purse,
        Icon	=	Purse,
        OpenSound   =   OpenBag,
        RunSpeedModifier = 0.99,
        CloseSound   =   CloseBag,
        PutInSound   =   PutItemInBag,
		ReplaceInSecondHand = Bag_Purse_LHand holdingbagleft,
        ReplaceInPrimaryHand = Bag_Purse_RHand holdingbagright,
        WorldStaticModel = Purse_Ground,
    }

See also