Fanny Pack: Difference between revisions

From PZwiki
No edit summary
Line 1: Line 1:
<!-- 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: The header format can be seen in the header template with a working explanation. The header connects categories and Version no. PLEASE ENTER THE VERSION AND INCREMENT No. WHEN YOU MAKE A PAGE. It helps everyone else know how old the page is versionwise -->
{{languages}}
 
{{header|The Game World|Items|Clothing|version=Version 41|incver=55}}
{{header|The Game World|Items|Clothing|version=Version 41|incver=55}}
<!-- COMMENT: Here is the infobox for the clothing. This is a quick lookup for the item's stats. For more information, see: https://pzwiki.net/wiki/Template:Infobox_clothing
 
-->{{Infobox clothing
{{Infobox clothing
| display_name = Fanny Pack
| display_name = Fanny Pack
| name_colour = Container
| name_colour = Container
Line 60: Line 61:


==Usage==
==Usage==
<!--Comment: This section contains how the item can be used. This may include crafting, adding attachments (belts), storage space, or another functionality, such as being able to raise and lower the hood of some jackets.
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.
-->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 ==
== Item Distribution ==
<!--Comment: The locations this item can be found should be placed here. Spawn locations can be found in the distribution.lua, ProceduralDistributions.lua and vehicledistribution.lua files. -->
 
===Buildings===
===Buildings===
Fanny packs can be found in [[Containers#Lockers|Lockers]] and [[Containers#Dressers|Wardrobes]] with an 8% spawn chance.
Fanny packs can be found in [[Containers#Lockers|Lockers]] and [[Containers#Dressers|Wardrobes]] with an 8% spawn chance.
Line 74: Line 74:
==Gallery==
==Gallery==
'''TODO'''
'''TODO'''
<!-- COMMENT: Include a list of clothing variants, in-game screenshots, etc. here -->
<gallery>
<gallery>


Line 80: Line 79:


== Code ==
== Code ==
<!--Comment: all the code related to the item found in txt files should be placed here-->
<!--COMMENT: Current location of Code in directory for updating purposes. Example below shows how to lay it out. ''''' is for bold italic.-->
'''''From clothing_bags.txt (Project Zomboid directory/media/scripts/clothing)'''''
'''''From clothing_bags.txt (Project Zomboid directory/media/scripts/clothing)'''''


''Front''
''Front''
<!--COMMENT: Be sure to include this "Retrieved" template, filling in the version of the game the code was retrieved.-->
{{Retrieved|version=41|incver=55}}
{{Retrieved|version=41|incver=55}}
<pre>    item Bag_FannyPackFront
<pre>    item Bag_FannyPackFront
Line 135: Line 130:


==See also==
==See also==
<!--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. -->


{{Navbox/Baggage}}
{{Navbox/Baggage}}
{{Navbox_clothing}}
{{Navbox_clothing}}

Revision as of 06:42, 8 October 2021


The Game WorldItemsClothingFanny Pack

Template:Infobox clothingA 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