Golf Bag: Difference between revisions

From PZwiki
(Move gallery to infobox)
m (minor infobox fixes)
Line 3: Line 3:
{{Infobox item
{{Infobox item
|name=Golf Bag
|name=Golf Bag
|name_colour=Container
|name_text_colour=Container
|model=GolfBag_Green_Model.png
|model=GolfBag_Green_Model.png
|image_width=200px
|icon=GolfBag_Green.png
|icon=GolfBag_Green.png
|icon_name=GolfBag (Green)
|icon_name=GolfBag (Green)
|model2=GolfBag_Red_Model.png
|icon2=GolfBag_Red.png
|icon2=GolfBag_Red.png
|model2=GolfBag_Red_Model.png
|icon_name2=GolfBag (red)
|icon_name2=GolfBag (Red)
|model3=GolfBag_Purple_Model.png
|icon3=GolfBag_Purple.png
|icon3=GolfBag_Purple.png
|model3=GolfBag_Purple_Model.png
|icon_name3=GolfBag (purple)
|icon_name3=GolfBag (Purple)
|model4=GolfBag_Blue_Model.png
|icon4=GolfBag_Blue.png
|icon4=GolfBag_Blue.png
|model4=GolfBag_Blue_Model.png
|icon_name4=Golf Bag (blue)
|icon_name4=Golf Bag (Blue)
|category=Container
|category=Container
|weight=1.2
|weight=1.2
Line 25: Line 22:
|run_speed=0.95
|run_speed=0.95
<!--TECHNICAL DETAILS-->
<!--TECHNICAL DETAILS-->
|item_id = Base.Bag_GolfBag
|item_id=Base.Bag_GolfBag
}}
}}



Revision as of 14:36, 23 March 2024

UI Tick.png
This page has been revised for the current stable version (41.78.16).
Help by adding any missing content. [edit]
Golf Bag
GolfBag Green Model.png
GolfBag Red Model.png
GolfBag Purple Model.png
GolfBag Blue Model.png
General
Category
Container
Encumbrance
Moodle Icon HeavyLoad.png
1.2 (empty)
6.66 (full)
Equipped
Back
Properties
Capacity
18
Run speed
95% (disabled)
Technical
Item ID
Base.Bag_GolfBag

A golf bag is a container item. It can be worn on the player’s back, allowing items to be carried with a weight reduction. The golf bag has blue, green, red, and purple color variants, the difference is purely visual.

Usage

The golf bag is a middle tier bag, with a carrying capacity and weight reduction slightly lower than that of the hiking bag. Any items stored inside the golf bag will only count as 35% of its original weight when calculated with the player’s overall encumbrance (An item with 2 encumbrance would weigh the player down by 1.3 encumbrance. Note that the item itself still takes up 2 encumbrance when taking up space in the bag).

Golf bags can spawn with (build 41):

Golfclub.png Golf Club
GolfBall.png Golf Ball
GlovesLeatherBlack.png Leather Gloves
HatVisorBlack.png Visor
Pencil.png Pencil
Eraser.png Eraser
Notebook.png Empty Notebook
IckySticks.png Cigarettes

Distribution

The loot distributions can be found in the table(s) below.

Containers
Building/Room Container Rolls Chance
all locker 4 0.5

Buildings

Building/Room Container Rolls Chance
Golf Course Locker 4 10
Classy Locker 4 0.5

Vehicles

Profession Container Rolls Chance
Golfer Trunk 4 20

Code

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

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

Retrieved: Build 41.78.16
item Bag_GolfBag
{
  DisplayCategory        = Bag,
  Type                   = Container,
  WeightReduction        = 65,
  Weight                 = 1.2,
  Capacity               = 18,
  DisplayName            = Golf Bag,
  IconsForTexture        = GolfBag_Blue;GolfBag_Green;GolfBag_Red;GolfBag_Purple,
  CanBeEquipped          = Back,
  OpenSound              = OpenBag,
  CloseSound             = CloseBag,
  PutInSound             = PutItemInBag,
  ClothingItem           = Bag_GolfBag,
  BloodLocation          = Bag,
  RunSpeedModifier       = 0.95,
  AttachmentReplacement  = Bag,
  ReplaceInSecondHand    = Bag_GolfBag_LHand holdingbagleft,
  ReplaceInPrimaryHand   = Bag_GolfBag_RHand holdingbagright,
  WorldStaticModel       = GolfBag_Ground,
}

See also