Toolbox

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]
Toolbox
ToolBox Model.png
General
Category
Container
Encumbrance
Moodle Icon HeavyLoad.png
2 (empty)
7.4 (full)
Equipped
One-handed
Properties
Capacity
8
Run speed
97% (disabled)
Technical
Item ID
Base.Toolbox

A toolbox is a container item.

Usage

The toolbox is a small container item that can be used to hold items. It has a low capacity and encumbrance reduction. It cannot be equipped on the player's back.

Toolboxes can spawn with:

BallPeenHammer.png Ball-peen Hammer ClubHammer.png Club Hammer
Crowbar.png Crowbar DuctTape.png Duct Tape
Hacksaw.png Saw Hammer.png Hammer
Flashlight2.png Hand Torch Nails.png Nails
NailsBox.png Nails PipeWrench.png Pipe Wrench
Handsaw.png Garden Saw Screwdriver.png Screwdriver
ScrewsBox.png Screws Twine.png Twine
WoodMallet.png Wooden Mallet Woodglue.png Wood Glue
Wrench.png Wrench

Distribution

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

Toolbox distribution Show / Hide
Containers
Building / Room Container Rolls Chance
Not referenced GeneratorRoom 4 2.0
all metal_shelves 4 0.5
armyhanger counter 4 2.0
carsupply clothingrack 4 2.0
carsupply counter 4 2.0
carsupply metal_shelves 4 2.0
carsupply shelves 4 2.0
closet crate 4 2.0
closet metal_shelves 4 2.0
garagestorage counter 4 2.0
laundry counter 4 2.0
mechanic metal_shelves 4 2.0
pawnshop metal_shelves 4 2.0
Vehicles
Vehicle Type/Location Rolls Chance
CarpenterTruckBed 1 50
CarpenterTruckBed 4 10
ConstructionWorkerTruckBed 1 100
ConstructionWorkerTruckBed 4 20
TransitTruckBed 1 100

Toolboxes spawn most commonly in mechanics shops, closets, garages, janitor closets, and pawn shops.

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 Toolbox
	{
	    DisplayCategory = Container,
		WeightReduction	=	15,
		Weight	=	2,
		Type	=	Container,
		Capacity	=	8,
		DisplayName	=	Toolbox,
		Icon	=	Toolbox,
		RunSpeedModifier = 0.97,
        OpenSound   =   OpenBag,
        CloseSound   =   CloseBag,
        PutInSound   =   PutItemInBag,
		ReplaceInSecondHand = Bag_Toolbox_LHand holdingbagleft,
        ReplaceInPrimaryHand = Bag_Toolbox_RHand holdingbagright,
        WorldStaticModel = ToolBox_Ground,
	}

See also