Fanny Pack: Difference between revisions

From PZwiki
(Created page with "<!-- COMMENT: This section is for the language bar. The language bar is used for linking translations of the same page into different languages. -->{{languages}}<!-- COMMENT:...")
 
Line 137: Line 137:
<!--COMMENT: Location of links to relevant guides or other pages that may not have been mentioned on this page but still relate to the item in some way. -->
<!--COMMENT: Location of links to relevant guides or other pages that may not have been mentioned on this page but still relate to the item in some way. -->


<!--COMMENT: Navbox should go here, just below the see also section.-->
{{Navbox/Baggage}}
{{Navbox clothing}}
{{Navbox_clothing}}
 
<!--COMMENT: Categories that aren't mentioned in the header should go here. E.g. Welder Mask uses [[Category:Construction]] -->

Revision as of 06:37, 8 October 2021

The Game WorldItemsClothingFanny Pack
Fanny Pack
General
Category Container
Encumbrance
Heavy Load
0.2
Body location Fanny Pack Front or Fanny Pack Back
Capacity 1
Encumbrance reduction 50%
Speed
Run speed 98%
Technical details
Item ID Base.Bag_FannyPackFront
Base.Bag_FannyPackBack

A fanny pack is a container item.

Usage

The fanny pack can be worn on the front or back of the character. It has the lowest capacity of all the bags, however it is useful for carrying small items like bandages, medicine, or cigarettes.

Item Distribution

Buildings

Fanny packs can be found in Lockers and Wardrobes with an 8% spawn chance.

NPCs

Zombies can rarely spawn wearing a fanny pack.


Gallery

TODO

Code

From clothing_bags.txt (Project Zomboid directory/media/scripts/clothing)

Front Retrieved: Build 41.55

    item Bag_FannyPackFront
    {
        WeightReduction	=	50,
        ClothingItemExtra = Bag_FannyPackBack,
        ClothingItemExtraOption = FannyPack_WearBack,
        clothingExtraSubmenu = FannyPack_WearFront,
        Weight	=	0.2,
        Type	=	Container,
        Capacity	=	1,
        DisplayName	=	Fanny Pack (Front),
        Icon	=	FannyPack,
        OpenSound   =   OpenBag,
        CloseSound   =   CloseBag,
        PutInSound   =   PutItemInBag,
        BodyLocation = FannyPackFront,
        ClothingItem = Bag_FannyPackFront,
        CanBeEquipped = FannyPackFront,
        RunSpeedModifier = 0.98,
        WorldStaticModel = FannyPack_Ground,
    }

Back Retrieved: Build 41.55

    item Bag_FannyPackBack
    {
        WeightReduction	=	50,
        ClothingItemExtra = Bag_FannyPackFront,
        ClothingItemExtraOption = FannyPack_WearFront,
        clothingExtraSubmenu = FannyPack_WearBack,
        Weight	=	0.2,
        Type	=	Container,
        Capacity	=	1,
        DisplayName	=	Fanny Pack (Back),
        Icon	=	FannyPack,
        OpenSound   =   OpenBag,
        CloseSound   =   CloseBag,
        PutInSound   =   PutItemInBag,
        BodyLocation = FannyPackBack,
        ClothingItem = Bag_FannyPackBack,
        CanBeEquipped = FannyPackBack,
        RunSpeedModifier = 0.98,
        WorldStaticModel = FannyPack_Ground,
    }

See also

Template:Navbox/Baggage