Tote Bag: Difference between revisions

From PZwiki
(Automated update of distribution section)
(→‎Distribution: Manual update)
Line 82: Line 82:
| 4  
| 4  
| 4
| 4
|}
===Buildings===
{| class="wikitable theme-red" style="text-align:center;"
|-
!Building/Room
!Container
!Rolls
!Chance
|-
|rowspan="2"|All
|[[Containers#Corpse|Male Corpse]]
|1
|0.1
|-
<!--|All-->
|[[Containers#Corpse|Female Corpse]]
|1
|0.1
|-
|Clothes Store
|[[Containers#Counters|Counter]]
|3
|5 (x4)
|-
|Furniture Store
|[[Containers#Counters|Counter]]
|3
|5 (x4)
|-
|rowspan="3"|Gift Store
|[[Containers#Shelves|Shelf]]
|3
|4
|-
<!--|Gift Store -->
|[[Containers#Displays|Display Case]]
|3
|4
|-
<!--|Gift Store -->
|[[Containers#Counters|Counter]]
|3
|5 (x4)
|-
|Hall
|[[Containers#Counters|Counter]]
|3
|6 (x4)
|-
|Kitchen
|[[Containers#Counters|Counter]]
|2
|1
|-
|Spiffo's Kitchen
|[[Containers#Counters|Counter]]
|6
|1 (x3)
|-
|Pile-o-crepe Kitchen
|[[Containers#Counters|Counter]]
|6
|1 (x3)
|-
|Shoe Store
|[[Containers#Counters|Counter]]
|3
|5 (x4)
|-
|Sport Store
|[[Containers#Counters|Counter]]
|3
|5 (x4)
|-
|Sport Storage
|[[Containers#Counters|Counter]]
|3
|5
|-
|Sewing Store
|[[Containers#Counters|Counter]]
|3
|5 (x2)
|-
|}
|}



Revision as of 07:58, 15 February 2024

Tote Bag
Tote Bag
Tote Bag
General
Category Container
Encumbrance
Heavy Load
0.5
Body location One-handed
Capacity 12
Encumbrance reduction 50%
Technical details
Item ID Base.Tote

A tote bag is a common container item.

Usage

A tote bag has a poor capacity and above average weight reduction. It can be found in the counters of almost every store, making it one of the best substitutes until a backpack is found. However, it does not reduce movement speed. It must be equipped in either the primary or secondary hand to be accessed and can usually be dropped if a backpack is found. After obtaining a backpack, if you have spare weight capacity, are using a one-handed weapon, and want more storage without hindering movement speed, keeping a Tote Bag is another option.

Tote bags can spawn with:

Plasticbag.png Plastic Bag

Distribution

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

Containers
Building/Room Container Rolls Chance
artstore counter 4 1
counter 4 1
counter 4 2
counter 4 2
counter 4 5
bookstore counter 4 1
counter 4 1
counter 4 2
counter 4 2
drugshack counter 4 4
kitchen counter 4 4

Vehicles

Profession Container Rolls Chance
All Trunk 2 3

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 Tote
	{
	    DisplayCategory = Container,
		WeightReduction	=	50,
		Weight	=	0.5,
		Type	=	Container,
		Capacity	=	12,
		DisplayName	=	Tote Bag,
		Icon	=	Tote,
        OpenSound   =   OpenBag,
        CloseSound   =   CloseBag,
        PutInSound   =   PutItemInBag,
		ReplaceInSecondHand = Bag_Tote_LHand holdingbagleft,
        ReplaceInPrimaryHand = Bag_Tote_RHand holdingbagright,
        WorldStaticModel = TotesBag_Ground,
        SoundParameter = EquippedBaggageContainer ToteBag,
	}

See also