School Bag: Difference between revisions

From PZwiki
m (Automated template formatting)
(Automated infobox update)
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 container
{{Infobox item
| display_name = School Bag
| name = School Bag
| name_colour = Container
| model = SchoolBag_Blue_Model.png
| name_text_colour = Container
| icon = Backpack_Blue.png
| image = SchoolBag_Blue_Model.png
| icon_name = School Bag (Blue)
| image_width = 200px
| icon2 = Backpack_Black.png
| alternate_image = Backpack_Blue.png
| icon_name2 = School Bag (Black)
| alternate_name = School Bag (Blue)
| icon3 = Backpack_Spiffo.png
| alternate_link =
| icon_name3 = School Bag (Spiffo)
| alternate_image2 = Backpack_Black.png
| alternate_name2 = School Bag (Black)
| alternate_link2 =
| alternate_image3 = Backpack_Spiffo.png
| alternate_name3 = School Bag (Spiffo)
| alternate_link3 =
<!--GENERAL-->
<!--GENERAL-->
| category = Container
| category = Container
| weight = 1.0
| weight = 1.0
| body_location = Back
| equipped = Back
| capacity = 15
| capacity = 15
| weight_reduction = 60
| weight_reduction = 60
| run_speed = 0.97
| run_speed = 0.97
<!--TECHNICAL DETAILS-->
<!--TECHNICAL DETAILS-->
| class_name = 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 [[item]]. The school bag has blue, black and spiffo variants.



Revision as of 01:13, 16 February 2024

Project ZomboidItemsBaggageSchool Bag
School Bag
SchoolBag Blue Model.png
School Bag (Black)
School Bag (Spiffo)
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