Suitcase

From PZwiki
UI Tick.png
This page has been revised for the current stable version (41.78.16).
Help by adding any missing content. [edit]
Suitcase
Suitcase Model.png
General
Category
Container
Encumbrance
Moodle Icon HeavyLoad.png
3 (empty)
8.9 (full)
Equipped
One-handed
Properties
Capacity
16
Run speed
98% (disabled)
Technical
Item ID
Base.Suitcase

A suitcase is a container item.

Usage

A suitcase cannot be equipped on the player's back. It has the second highest capacity of all handheld containers, and an above average weight reduction. It must be equipped in one of the player's hands to be accessed.

Suitcases can spawn with (build 41):

Pen.png Pen
Blue Pen Blue Pen
Red Pen Red Pen
Pencil.png Pencil
RubberBand.png Rubber Band
CordlessPhone.png Cordless Phone
Paper.png Sheet of Paper

Distribution

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

Containers
Building/Room Container Rolls Chance
all wardrobe 4 0.2
wardrobe 4 0.2
wardrobe 4 0.2
wardrobe 4 0.2
wardrobe 4 0.2
bathroom locker 4 0.2
locker 4 0.2
locker 4 0.2
locker 4 0.2
closet metal_shelves 4 0.2
pawnshop metal_shelves 4 1

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 Suitcase
	{
	    DisplayCategory = Container,
		WeightReduction	=	50,
		Weight	=	3,
		Type	=	Container,
		Capacity	=	16,
		DisplayName	=	Suitcase,
		Icon	=	Suitcase,
		RunSpeedModifier = 0.98,
        OpenSound   =   OpenBag,
        CloseSound   =   CloseBag,
        PutInSound   =   PutItemInBag,
		ReplaceInSecondHand = Bag_Suitcase_LHand holdingbagleft,
        ReplaceInPrimaryHand = Bag_Suitcase_RHand holdingbagright,
        WorldStaticModel = Suitcase_Ground,
	}

See also