Fanny Pack: Difference between revisions

From PZwiki
m (Add image width)
m (Minor fixes)
(25 intermediate revisions by 6 users not shown)
Line 1: Line 1:
 
{{Header|Project Zomboid|Items|Equipment|Container items|Wearable containers}}
{{languages}}
{{Page version|41.78.16}}
 
{{Infobox item
{{header|The Game World|Items|Baggage|version=Version 41|incver=55}}
|name=Fanny Pack
 
|model=FannyPack_Model.png
{{Infobox clothing
|icon=FannyPack.png
| display_name = Fanny Pack
|icon_name=Fanny Pack
| name_colour = Container
| name_text_colour = Container
| image = FannyPack.png
| image_width = 120px
<!-- General -->
<!-- General -->
| category = Container
|category=Container
| weight = 0.2
|weight=0.2
| body_location = Fanny Pack Front or Fanny Pack Back
|equipped=Fanny Pack Front {{or}} Fanny Pack Back
| condition =
|capacity=1
| fabric =
|weight_reduction=50
| capacity = 1
| weight_reduction = 50
| attachments_provided =
<!-- Speed -->
<!-- Speed -->
| run_speed = 0.98
|run_speed=0.98
| combat_speed =
<!-- Protection -->
<!-- Protection -->
| scratch_defense =
| bite_defense =
| neck_protection =
<!-- Insulation -->
<!-- Insulation -->
| insulation =
| wind_resistance =
| water_resistance =
<!-- Technical details -->
<!-- Technical details -->
| class_name = Base.Bag_FannyPackFront<br>Base.Bag_FannyPackBack
|item_id=Base.Bag_FannyPackFront
}}<!--
|item_id2=Base.Bag_FannyPackBack
COMMENT: include a very brief introduction to the item
}}
-->A fanny pack is a container [[item]].
A '''fanny pack''' is a container [[Items|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.


===NPCs===
===NPCs===
Zombies can rarely spawn wearing a fanny pack.
[[Zombie]]s can rarely spawn wearing a fanny pack.
 


==Gallery==
==Code==
'''TODO'''
{{CodeBox|'''Front'''<br>
<gallery>
{{CodeSnip
 
  | lang = java
</gallery>
  | line = true
 
  | start = 492
== Code ==
  | source = clothing_bags.txt
'''''From clothing_bags.txt (Project Zomboid directory/media/scripts/clothing)'''''
  | retrieved = true
 
  | version = 41.78.16
''Front''
  | code =
{{Retrieved|version=41|incver=55}}
item Bag_FannyPackFront
<pre>    item Bag_FannyPackFront
     {
     {
        DisplayCategory = Bag,
         WeightReduction = 50,
         WeightReduction = 50,
         ClothingItemExtra = Bag_FannyPackBack,
         ClothingItemExtra = Bag_FannyPackBack,
Line 82: Line 63:
         WorldStaticModel = FannyPack_Ground,
         WorldStaticModel = FannyPack_Ground,
     }
     }
</pre>
}}


''Back''
'''Back'''<br>
{{Retrieved|version=41|incver=55}}
{{CodeSnip
<pre>    item Bag_FannyPackBack
  | lang = java
  | line = true
  | start = 514
  | source = clothing_bags.txt
  | retrieved = true
  | version = 41.78.16
  | code =
item Bag_FannyPackBack
     {
     {
        DisplayCategory = Bag,
         WeightReduction = 50,
         WeightReduction = 50,
         ClothingItemExtra = Bag_FannyPackFront,
         ClothingItemExtra = Bag_FannyPackFront,
Line 106: Line 95:
         WorldStaticModel = FannyPack_Ground,
         WorldStaticModel = FannyPack_Ground,
     }
     }
</pre>
}}
}}
 
==See also==
*[[Bags]]


{{Navbox_equipment}}
{{Navbox items|containers}}

Revision as of 20:55, 19 April 2024

UI Tick.png
This page has been revised for the current stable version (41.78.16).
Help by adding any missing content. [edit]
Fanny Pack
FannyPack Model.png
General
Category
Container
Encumbrance
Moodle Icon HeavyLoad.png
0.2 (empty)
0.56 (full)
Equipped
Fanny Pack Front
OR
Fanny Pack Back
Properties
Capacity
1
Run speed
98% (disabled)
Technical
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.

Code

Code icon.png Code snippet! This section contains source code from Project ZomboidShow / Hide

Front
Source: ProjectZomboid\media\scripts\clothing\clothing_bags.txt

Retrieved: Build 41.78.16
item Bag_FannyPackFront
    {
        DisplayCategory = Bag,
        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
Source: ProjectZomboid\media\scripts\clothing\clothing_bags.txt

Retrieved: Build 41.78.16
item Bag_FannyPackBack
    {
        DisplayCategory = Bag,
        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