Fanny Pack: Difference between revisions

From PZwiki
m (minor fixes)
m (Cleanups)
Line 1: Line 1:
 
{{Languages}}{{Header|The Game World|Items|Baggage|version=Version 41|incver=78.16}}{{Infobox container
{{languages}}
 
{{header|The Game World|Items|Baggage|version=Version 41|incver=78.16}}
 
{{Infobox container
| display_name = Fanny Pack
| display_name = Fanny Pack
| name_colour = Container
| name_colour = Container
Line 34: Line 29:
<!-- Technical details -->
<!-- Technical details -->
| class_name = Base.Bag_FannyPackFront<br>Base.Bag_FannyPackBack
| class_name = Base.Bag_FannyPackFront<br>Base.Bag_FannyPackBack
}}<!--
}}A '''fanny pack''' is a container [[item]].   
COMMENT: include a very brief introduction to the item
-->A '''fanny pack''' is a container [[item]].   
 
__TOC__
<!--Comment: This is where the 'Table Of Contents' will go if it is needed-->


==Usage==
==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. Two can be worn at once alongside the backpack of your choice, as they occupy unique slots on your character. Additionally, [[Traits|organized]] will increase fanny pack capacity to 2 making them twice as useful.
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. Two can be worn at once alongside the backpack of your choice, as they occupy unique slots on your character. Additionally, [[Traits|organized]] will increase fanny pack capacity to 2 making them twice as useful.


== Item distribution ==
==Distribution==
 
===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 51: Line 40:
===NPCs===
===NPCs===
[[Zombie]]s can rarely spawn wearing a fanny pack.
[[Zombie]]s can rarely spawn wearing a fanny pack.


==Gallery==
==Gallery==
<gallery>
<gallery>
FannyPack_Model.png|Fanny Pack model
FannyPack Model.png|Fanny Pack model
</gallery>
</gallery>


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


''Front''
''Front''
{{Retrieved|version=41|incver=55}}
{{Retrieved|version=41|incver=55}}
<pre>   item Bag_FannyPackFront
<pre>
    item Bag_FannyPackFront
     {
     {
         WeightReduction = 50,
         WeightReduction = 50,
Line 87: Line 76:
''Back''
''Back''
{{Retrieved|version=41|incver=55}}
{{Retrieved|version=41|incver=55}}
<pre>   item Bag_FannyPackBack
<pre>
    item Bag_FannyPackBack
     {
     {
         WeightReduction = 50,
         WeightReduction = 50,
Line 109: Line 99:
</pre>
</pre>


{{Navbox_equipment}}
{{Navbox equipment}}

Revision as of 23:16, 26 June 2023

The Game WorldItemsBaggageFanny Pack
Fanny Pack
Fanny 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. Two can be worn at once alongside the backpack of your choice, as they occupy unique slots on your character. Additionally, organized will increase fanny pack capacity to 2 making them twice as useful.

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

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,
    }