Normal Hiking Bag: Difference between revisions

From PZwiki
(Updated layout and changed infobox)
(added build 41 content)
(One intermediate revision by one other user not shown)
Line 40: Line 40:
It can usually be found inside [[Containers#Bedroom Storage|wardrobes]], but it is slightly more common to find a [[duffelbag]] or [[schoolbag]]. It is also the only bag that can be found inside the police station storage.
It can usually be found inside [[Containers#Bedroom Storage|wardrobes]], but it is slightly more common to find a [[duffelbag]] or [[schoolbag]]. It is also the only bag that can be found inside the police station storage.
===Buildings===
===Buildings===
{| class="wikitable" style="text-align:center;"
{| class="pztable" style="text-align:center;"
|-
|-
!Building/Room
!Building/Room
Line 100: Line 100:


===Vehicles===
===Vehicles===
{| class="wikitable" style="text-align:center;"
{| class="pztable" style="text-align:center;"
|-
|-
!Profession
!Profession
Line 123: Line 123:
|-
|-
|}
|}
==Build 41==
{{Testing|build=[[Build 41]]}}
{{Infobox container
| display_name = Hiking Bag
| name_colour = Container
| name_text_colour = Container
| image = Model_HikingBag_Blue.png
| image_width = 200px
| alternate_image = Hiking_Blue.png
| alternate_name = Hiking Bag (Blue)
| alternate_link =
| alternate_image2 = Hiking_Green.png
| alternate_name2 = Hiking Bag (Green)
| alternate_link2 =
| alternate_image3 = Hiking_Red.png
| alternate_name3 = Hiking Bag (Red)
| alternate_link3 =
<!--GENERAL-->
| category = Container
| weight = 1.2
| body_location = Back
| capacity = 20
| weight_reduction = 70
| run_speed = 0.96
<!--TECHNICAL DETAILS-->
| class_name = Base.Bag_NormalHikingBag
}}A '''hiking bag''' is a container [[item]]. The hiking bag has blue, green and red colour variants.
{{clear}}
==Gallery==
<gallery>
Duffelbag_120px.png|Icon prior to build 41. 
Model_HikingBag_Red.png|Model for red colour variant of the hiking bag.
Model_HikingBag_Green.png|Model for green colour variant of big hiking bag.
Model_HikingBag_Blue.png|Model for blue colour variant of the hiking bag.
</gallery>


==Code==
==Code==
''Build 40''
'''''From newitems.txt (Project Zomboid directory/media/scripts/)'''''
'''''From newitems.txt (Project Zomboid directory/media/scripts/)'''''
{{Retrieved|version=40|incver=6}}
{{Retrieved|version=40|incver=6}}
<pre> item BigHikingBag
<pre> item NormalHikingBag
WeightReduction = 70,
WeightReduction = 70,
Weight         = 0.5,
Weight         = 0.5,
Line 138: Line 178:
CloseSound = PZ_CloseBag,
CloseSound = PZ_CloseBag,
PutInSound = PZ_PutInBag,</pre>
PutInSound = PZ_PutInBag,</pre>
''Build 41''
'''''From clothing_others.txt (Project Zomboid directory/media/scripts/clothing)'''''
{{Retrieved|version=41|incver=50}}
<pre>    item Bag_NormalHikingBag
    {
        WeightReduction = 70,
        Weight = 1.2,
        Type = Container,
        Capacity = 20,
        DisplayName = Hiking Bag,
        IconsForTexture = Hiking_Blue;Hiking_Green;Hiking_Red,
        CanBeEquipped = Back,
        OpenSound  =  OpenBag,
        CloseSound  =  CloseBag,
        PutInSound  =  PutItemInBag,
        ClothingItem = Bag_HikingBag,
        BloodLocation = Bag,
        RunSpeedModifier = 0.96,
        AttachmentReplacement = Bag,
        ReplaceInSecondHand = Bag_HikingBag_LHand holdingbagleft,
        ReplaceInPrimaryHand = Bag_HikingBag_RHand holdingbagright,
    }
</pre>


==See also==
==See also==
Line 145: Line 210:


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

Revision as of 12:27, 5 February 2021

The Game WorldItemsBaggageNormal Hiking Bag
Normal Hiking Bag
Normal Hiking Bag
General
Category Container
Encumbrance
Heavy Load
0.5
Body location Back
Capacity 20
Encumbrance reduction 70%
Technical details
Item ID Base.NormalHikingBag

A normal hiking bag is a container item.

Usage

A normal hiking bag can be equipped on the back, allowing the player to equip other items in their hands at the same time. It has the second best item weight reduction and capacity of all the bags, exceeded only by the big hiking bag.

Normal hiking bags can spawn with:

File:VestAnim.gif Vest
ShirtAnim.gif Sweater
ShirtAnim.gif Blouse
File:TrousersAnim.gif Pants (disambiguation)
SkirtAnim.gif Skirt
Shoes.png Shoes (disambiguation)
SocksAnim.gif Socks
UnderwearAnim.gif Underwear
TZ TentKit.png Tent Kit

Distribution

It can usually be found inside wardrobes, but it is slightly more common to find a duffelbag or schoolbag. It is also the only bag that can be found inside the police station storage.

Buildings

Building/Room Container Rolls Chance
All Male Corpse 1 0.1
Female Corpse 1 0.1
Wardrobe 4 0.8
Bedroom Wardrobe 2 0.8
Changeroom Locker 2 0.8
Motel Room (occupied) Other 2 0.1
Police Storage Other 4 1
Sport Store Shelves 3 0.8
Clothing Rack 3 0.8
Sport Storage Metal Shelves 3 0.8

Vehicles

Profession Container Rolls Chance
Golf Trunk 2 3
Police Trunk 4 1
Taxi Trunk 3 2

Build 41

Profession engineer.png
This is a testing feature.
This article is about an item or mechanic that is currently in testing and not part of the stable version of the game.
Hiking Bag
Hiking Bag
Hiking Bag (Blue) Hiking Bag (Green) Hiking Bag (Red)
General
Category Container
Encumbrance
Heavy Load
1.2
Body location Back
Capacity 20
Encumbrance reduction 70%
Speed
Run speed 96%
Technical details
Item ID Base.Bag_NormalHikingBag

A hiking bag is a container item. The hiking bag has blue, green and red colour variants.

Gallery

Code

Build 40

From newitems.txt (Project Zomboid directory/media/scripts/) Retrieved: Build 40.6

	item NormalHikingBag
		WeightReduction	= 70,
		Weight	        = 0.5,
		Type	        = Container,
		Capacity	= 20,
		DisplayName	= Normal Hiking Bag,
		Icon	        = Duffelbag,
		CanBeEquipped	= Back,
		OpenSound	= PZ_OpenBag,
		CloseSound	= PZ_CloseBag,
		PutInSound	= PZ_PutInBag,

Build 41

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

    item Bag_NormalHikingBag
    {
        WeightReduction	=	70,
        Weight	=	1.2,
        Type	=	Container,
        Capacity	=	20,
        DisplayName	=	Hiking Bag,
        IconsForTexture	=	Hiking_Blue;Hiking_Green;Hiking_Red,
        CanBeEquipped = Back,
        OpenSound   =   OpenBag,
        CloseSound   =   CloseBag,
        PutInSound   =   PutItemInBag,
        ClothingItem = Bag_HikingBag,
        BloodLocation = Bag,
        RunSpeedModifier = 0.96,
        AttachmentReplacement = Bag,
        ReplaceInSecondHand = Bag_HikingBag_LHand holdingbagleft,
        ReplaceInPrimaryHand = Bag_HikingBag_RHand holdingbagright,
    }

See also

Template:Navbox/Baggage