Big Hiking Bag: Difference between revisions

From PZwiki
m (Add sub-version)
m (Normal Hiking Bag was removed.)
Line 23: Line 23:
<!--TECHNICAL DETAILS-->
<!--TECHNICAL DETAILS-->
|class_name=Base.Bag_BigHikingBag
|class_name=Base.Bag_BigHikingBag
}}A '''big hiking bag''' is a container [[item]]. It can be worn on the player’s back to allow the player to carry more items while reducing their encumbrance on the player. The big hiking bag has blue, green and red color variants. It’s the larger version of the [[Normal Hiking Bag]].
}}A '''big hiking bag''' is a container [[item]]. It can be worn on the player’s back to allow the player to carry more items while reducing their encumbrance on the player. The big hiking bag has blue, green and red color variants. It’s the larger version of the [[Hiking Bag]].


==Usage==
==Usage==

Revision as of 12:48, 28 March 2023

The Game WorldItemsBaggageBig Hiking Bag
Big Hiking Bag
Big Hiking Bag
Big Hiking Bag (Blue) Big Hiking Bag (Green) Big Hiking Bag (Red)
General
Category Container
Encumbrance
Heavy Load
1.5
Body location Back
Capacity 22
Encumbrance reduction 80%
Speed
Run speed 95%
Technical details
Item ID Base.Bag_BigHikingBag

A big hiking bag is a container item. It can be worn on the player’s back to allow the player to carry more items while reducing their encumbrance on the player. The big hiking bag has blue, green and red color variants. It’s the larger version of the Hiking Bag.

Usage

The Big Hiking Bag an upper tier bag, and can hold 22 encumbrance while having a weight reduction of 80% (An item that has 2 encumbrance would only have 0.4 encumbrance when in the bag. Note that this does not change how much space it takes up in the backpack itself). This encumbrance and weight reduction level makes it one of the best bags in the game, only behind the Large Backpack and the Military Backpack. It can be found in residential areas in closets and dressers, and also in camping and hardware stores.

Gallery

Code

From clothing_bags.txt (Project Zomboid directory/media/scripts/clothing) Retrieved: Build 41.50

   item Bag_BigHikingBag
    {
        WeightReduction	=	80,
        Weight	=	1.5,
        Type	=	Container,
        Capacity	=	22,
        DisplayName	=	Big Hiking Bag,
        IconsForTexture = BigHiking_Blue;BigHiking_Green;BigHiking_Red,
        CanBeEquipped = Back,
        OpenSound   =   OpenBag,
        CloseSound   =   CloseBag,
        PutInSound   =   PutItemInBag,
        ClothingItem = Bag_BigHikingBag,
        BloodLocation = Bag,
        RunSpeedModifier = 0.95,
        AttachmentReplacement = Bag,
        ReplaceInSecondHand = Bag_BigHikingBag_LHand holdingbagleft,
        ReplaceInPrimaryHand = Bag_BigHikingBag_RHand holdingbagright,
    }

See also