School Bag: Difference between revisions

From PZwiki
m (Automated CodeBox update)
(Move gallery to infobox)
Line 1: Line 1:
{{languages}}
{{Languages}}
{{Header|Project Zomboid|Items|Baggage|type=Baggage|version=Version 41|incver=52}}
{{Header|Project Zomboid|Items|Baggage|type=Baggage|version=Version 41|incver=52}}
{{Infobox item
{{Infobox item
Line 5: Line 5:
| model = SchoolBag_Blue_Model.png
| model = SchoolBag_Blue_Model.png
| icon = Backpack_Blue.png
| icon = Backpack_Blue.png
| icon_name = School Bag (Blue)
| icon_name = School Bag (blue)
| model2 = SchoolBag_Black_Model.png
| icon2 = Backpack_Black.png
| icon2 = Backpack_Black.png
| icon_name2 = School Bag (Black)
| icon_name2 = School Bag (black)
| model3 = SchoolBag_Spiffo_Model.png
| icon3 = Backpack_Spiffo.png
| icon3 = Backpack_Spiffo.png
| icon_name3 = School Bag (Spiffo)
| icon_name3 = School Bag (Spiffo)
Line 19: Line 21:
<!--TECHNICAL DETAILS-->
<!--TECHNICAL DETAILS-->
| item_id = Base.Bag_Schoolbag
| item_id = Base.Bag_Schoolbag
}}A '''school bag''' is a container [[item]]. The school bag has blue, black and spiffo variants.
}}
A '''school bag''' is a container [[Items|item]]. The school bag has blue, black and Spiffo variants.


==Overview==
==Overview==
Line 48: Line 51:
|}
|}


{{clear}}
==Distribution==
==Distribution==
The loot distributions can be found in the table(s) below.
The loot distributions can be found in the table(s) below.
Line 117: Line 119:
==Gallery==
==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">
<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">
Backpack.png|Icon prior to build 41.
Backpack.png|Icon prior to [[build 41]].
SchoolBag_Blue_Model.png|Model for blue variant of the school bag.
SchoolBag_Black_Model.png|Model for black variant of the school bag.
SchoolBag_Spiffo_Model.png|Model for Spiffo variant of the school bag.
</gallery>
</gallery>



Revision as of 13:39, 25 February 2024

Project ZomboidItemsBaggageSchool Bag
School Bag
SchoolBag Blue Model.png
SchoolBag Black Model.png
SchoolBag Spiffo Model.png
General
Category
Container
Encumbrance
Moodle Icon HeavyLoad.png
1.0 (empty)
6.3 (full)
Equipped
Back
Properties
Capacity
15
Run speed
97% (disabled)
Technical
Item ID
Base.Bag_Schoolbag

A school bag is a container item. The school bag has blue, black and Spiffo variants.

Overview

When starting a new game, if the player chooses the easy or normal starting difficulty, they will spawn with a school bag. During the custom sandbox setup, choosing the "starter kit" option will also spawn the player with a school bag.

Usage

A school bag can be equipped on the back. Although it is the most common of the bags that can be equipped on the back, it also has the lowest capacity and weight reduction.

School bags can spawn with (build 40):

Pen.png Pen
Blue Pen Blue Pen
Red Pen Red Pen
Pencil.png Pencil
RubberBand.png Rubber Band
Scissors.png Scissors
IckySticks.png Cigarettes
Cube.png Cube
Book.png Book

Distribution

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

Containers
Building/Room Container Rolls Chance
bedroom wardrobe 4 0.5
bookstore counter 4 8
counter 4 8
camping counter 4 1
counter 4 1
closet metal_shelves 4 0.5
generalstore shelves 4 1
shelves 4 1
shelves 4 2
shelves 4 2
hall locker 4 2
locker 4 2

Gallery

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.52
item Bag_Schoolbag
{
  WeightReduction        = 60,
  Weight                 = 1,
  Type                   = Container,
  Capacity               = 15,
  DisplayName            = School Bag,
  IconsForTexture        = Backpack_Black;Backpack_Blue;Backpack_Spiffo,
  CanBeEquipped          = Back,
  OpenSound              = OpenBag,
  CloseSound             = CloseBag,
  PutInSound             = PutItemInBag,
  ClothingItem           = Bag_SchoolBag,
  BloodLocation          = Bag,
  RunSpeedModifier       = 0.97,
  AttachmentReplacement  = Bag,
  ReplaceInSecondHand    = Bag_Schoolbag_LHand holdingbagleft,
  ReplaceInPrimaryHand   = Bag_Schoolbag_RHand holdingbagright,
}

See also