Bowling Ball Bag: Difference between revisions

From PZwiki
m (Updated distribution table)
(Move gallery to infobox)
Line 7: Line 7:
| model = BowlingBallBagBlack_Model.png
| model = BowlingBallBagBlack_Model.png
| icon= BowlingBagBlack.png
| icon= BowlingBagBlack.png
| model2 = BowlingBallBagBlue_Model.png
| icon2= BowlingBagBlue.png
| model3 = BowlingBallBagPink_Model.png
| icon3= BowlingBagPurple.png
| model4 = BowlingBallBagRedModel.png
| icon4= BowlingBagRed.png
| icon_name= Bowling Ball Bag
| icon_name= Bowling Ball Bag
| category = Container
| category = Container
Line 44: Line 50:
|1
|1
|}
|}
==Gallery==
<gallery style="image-rendering:optimizeSpeed;image-rendering:-moz-crisp-edges;image-rendering:-o-crisp-edges;image-rendering:-webkit-optimize-contrast;image-rendering:optimize-contrast;image-rendering:pixelated;image-rendering:crisp-edges;-ms-interpolation-mode:nearest-neighbor">
BowlingBallBagBlack_Model.png|Model for the black variant of the bowling ball bag.
BowlingBallBagBlue_Model.png|Model for the blue variant of the bowling ball bag.
BowlingBallBagPink_Model.png|Model for the pink variant of the bowling ball bag.
BowlingBallBagRedModel.png|Model for the red variant of the bowling ball bag.
</gallery>


==Code==
==Code==

Revision as of 23:53, 20 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]
Bowling Ball Bag
BowlingBallBagBlack Model.png
BowlingBallBagBlue Model.png
BowlingBallBagPink Model.png
BowlingBallBagRedModel.png
General
Category
Container
Encumbrance
Moodle Icon HeavyLoad.png
1.5 (empty)
8.05 (full)
Equipped
One-handed
Properties
Capacity
8
Technical
Item ID
Base.Cooler

A bowling ball bag is a container item.

Usage

A bowling ball bag cannot be equipped on the player's back. It must be equipped in one of the player's hands to be accessed.

Bowling ball bags can spawn with (build 41):

ShirtAthleticRed.png Bowling Shirt
Shoes.png Bowling Shoes

Distribution

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

Containers
Building/Room Container Rolls Chance
closet crate 4 1

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_BowlingBallBag
{
    DisplayCategory         = Bag,
    WeightReduction         = 20,
    Weight                  = 1,
    Type                    = Container,
    Capacity                = 8,
    DisplayName             = Bowling Ball Bag,
    ClothingItem            = Bag_BowlingBallBag,
    IconsForTexture         = BowlingBagBlack;BowlingBagBlue;BowlingBagPurple;BowlingBagRed,
    OpenSound               = OpenBag,
    CloseSound              = CloseBag,
    PutInSound              = PutItemInBag,
    ReplaceInSecondHand     = Bag_BowlingBallBag_LHand holdingbagleft,
    ReplaceInPrimaryHand    = Bag_BowlingBallBag_RHand holdingbagright,
    WorldStaticModel        = BowlingBallBag_Ground,
}

See also