Large Backpack: Difference between revisions

From PZwiki
(Created page with "{{Testing|build=Build 41}} {{Infobox container | display_name = Large Backpack | name_colour = Container | name_text_colour = Container | image = AliceBag.png | category =...")
 
m (→‎Distribution: Manual update)
 
(47 intermediate revisions by 16 users not shown)
Line 1: Line 1:
{{Testing|build=[[Build 41]]}}
{{Header|Project Zomboid|Items|Equipment|Container items|Wearable containers}}
{{Infobox container
{{Page version|41.78.16}}
| display_name = Large Backpack
{{Infobox item
| name_colour = Container
|name=Large Backpack
| name_text_colour = Container
|model=ALICEpack_Green_Model.png
| image = AliceBag.png
|icon=AliceBag.png
| category = Container
|icon_name=Large Backpack
| weight = 2.0
<!-- General -->
| equipped = Back
|category=Container
| capacity = 30
|weight=2
| weight_reduction = 90
|equipped=Back
| run_speed = 0.94
|capacity=27
| class_name = item Bag_SurvivorBag
|weight_reduction=85
}}A '''Large Backpack''' is a container [[item]]. The Large Backpack alongside the [[Military Backpack]] outclass every other backpack in weight reduction and carry capacity. The Large Backpack can be found on mannequins and reanimated survivor zombies with supplies inside the backpack. If the player has the organized trait, the backpack has a capacity of 39.
|attachments_provided=Bag
<!-- Speed -->
|run_speed=0.94
<!-- Technical details -->
|item_id=Base.Bag_SurvivorBag<br>Base.Bag_ALICEpack
}}
A '''large backpack''' is a container [[Items|item]] worn on the back. It has two different IDs depending on when it was found, though both are functionally the same.
 
==Usage==
The large backpacks are the second in capacity and encumbrance reduction, making them one of the best bags in the game. If the player has the [[Traits#Positives|organized]] trait, the large backpacks have a capacity of 35.
 
==Distribution==
The loot distributions can be found in the table(s) below.
 
<!--BOT FLAG|Bag_ALICEpack|41.78.16-->
{{clear}}
<div class="togglebox theme-red">
    <div>Bag_ALICEpack distribution
        <span class="mw-customtoggle-togglebox-Bag_ALICEpack" title="{{int:show}} / {{int:hide}}" style="float:right; padding-right:30px; padding-top:4px; font-size:0.7em; font-weight:normal;">{{int:show}} / {{int:hide}}</span></div>
    <div class="mw-collapsible mw-collapsed" id="mw-customcollapsible-togglebox-Bag_ALICEpack">
    <div class="toggle-content"><div style="display: flex;"><div style="float:left;">
    {| class="wikitable theme-red" style="margin-right:15px; width:95%;"
    |+ {{ll|Containers}}
    ! Building / Room
    ! Container
    ! Rolls
    ! Chance
    |-
    | armysurplus
    | {{ll|metal_shelves}}
    | 4
    | 1.0
    |-
    | bedroom
    | {{ll|crate}}
    | 1
    | 0.001
    |-
    | bedroom
    | {{ll|locker}}
    | 4
    | 0.01
    |-
    | camping
    | {{ll|counter}}
    | 4
    | 0.5
    |-
    | changeroom
    | {{ll|locker}}
    | 4
    | 0.01
    |-
    | closet
    | {{ll|crate}}
    | 4
    | 0.01
    |-
    | closet
    | {{ll|crate}}
    | 4
    | 0.5
    |}
</div>
<div style="float:left;">
    {| class="wikitable theme-red" style="margin-right:15px; width:95%;"
    |+ {{ll|Vehicles}}
    ! Vehicle Type/Location
    ! Rolls
    ! Chance
    |-
    | HunterTruckBed
    | 1
    | 0.5
    |-
    | SurvivalistTruckBed
    | 1
    | 0.01
    |}
</div>
    </div><div style="clear:both;"></div>
    </div></div><div class="toggle large mw-customtoggle-togglebox-Bag_ALICEpack" title="{{int:show}}/{{int:hide}}"></div></div>
<!--END BOT FLAG|Bag_ALICEpack|41.78.16-->
 
==NPCs==
The '''large backpack''' can be found on reanimated survivor [[zombie]]s with supplies inside the backpack. Survivor zombies can be seen in barricaded houses and among hordes. This bag has different ID, but is otherwise undistinguishable.
 
==Trivia==
*The non-survivor item's ID suggests the bag belongs to the [[Wikipedia:All-purpose Lightweight Individual Carrying Equipment|ALICE]] set of load-carrying equipment, which was in the use by the military back when the game takes place.
 
==Code==
{{CodeBox|{{ID|Base.Bag_ALICEpack}}<br>
{{CodeSnip
  | lang = java
  | line = true
  | start = 113
  | source = clothing_bags.txt
  | retrieved = true
  | version = 41.78.16
  | code =
item Bag_ALICEpack
    {
        DisplayCategory = Bag,
        Type = Container,
        DisplayName = Large Backpack,
        ClothingItem = Bag_ALICEpack,
        CanBeEquipped = Back,
        WeightReduction = 85,
        Weight = 2,
        Capacity = 27,
        Icon = AliceBag,
        OpenSound  =  OpenBag,
        CloseSound  =  CloseBag,
        PutInSound  =  PutItemInBag,
        BloodLocation = Bag,
        RunSpeedModifier = 0.94,
        CanHaveHoles = false,
        AttachmentReplacement = Bag,
        ReplaceInSecondHand = Bag_ALICEpack_LHand holdingbagleft,
        ReplaceInPrimaryHand = Bag_ALICEpack_RHand holdingbagright,
        WorldStaticModel = ALICE_Pack_Ground,
    }
}}
 
{{ID|Base.Bag_SurvivorBag}}<br>
{{CodeSnip
  | lang = java
  | line = true
  | start = 91
  | source = clothing_bags.txt
  | retrieved = true
  | version = 41.78.16
  | code =
item Bag_SurvivorBag
    {
        DisplayCategory = Bag,
        Type = Container,
        DisplayName = Backpack,
        ClothingItem = Bag_SurvivorBag,
        CanBeEquipped = Back,
        WeightReduction = 85,
        Weight = 2,
        Capacity = 27,
        Icon = AliceBag,
        OpenSound  =  OpenBag,
        CloseSound  =  CloseBag,
        PutInSound  =  PutItemInBag,
        BloodLocation = Bag,
        RunSpeedModifier = 0.94,
        CanHaveHoles = false,
        AttachmentReplacement = Bag,
        ReplaceInSecondHand = Bag_ALICEpack_LHand holdingbagleft,
        ReplaceInPrimaryHand = Bag_ALICEpack_RHand holdingbagright,
        WorldStaticModel = ALICE_Pack_Ground,
    }
}}
}}


==See also==
==See also==
* [[Big Hiking Bag]]
*[[Military Backpack]]
* [[Hiking Bag]]
*[[Big Hiking Bag]]
* [[Duffelbag]]
*[[Hiking Bag]]
* [[Schoolbag]]
*[[Duffel Bag]]
* [[Military Backpack]]
*[[School Bag]]


{{clear}}
{{Navbox items|containers}}

Latest revision as of 16:45, 24 April 2024

UI Tick.png
This page has been revised for the current stable version (41.78.16).
Help by adding any missing content. [edit]
Large Backpack
ALICEpack Green Model.png
General
Category
Container
Encumbrance
Moodle Icon HeavyLoad.png
2 (empty)
4.65 (full)
Equipped
Back
Slots added
Bag
Properties
Capacity
27
Run speed
94% (disabled)
Technical
Item ID
Base.Bag_SurvivorBag
Base.Bag_ALICEpack

A large backpack is a container item worn on the back. It has two different IDs depending on when it was found, though both are functionally the same.

Usage

The large backpacks are the second in capacity and encumbrance reduction, making them one of the best bags in the game. If the player has the organized trait, the large backpacks have a capacity of 35.

Distribution

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

Bag_ALICEpack distribution Show / Hide
Containers
Building / Room Container Rolls Chance
armysurplus metal_shelves 4 1.0
bedroom crate 1 0.001
bedroom locker 4 0.01
camping counter 4 0.5
changeroom locker 4 0.01
closet crate 4 0.01
closet crate 4 0.5
Vehicles
Vehicle Type/Location Rolls Chance
HunterTruckBed 1 0.5
SurvivalistTruckBed 1 0.01

NPCs

The large backpack can be found on reanimated survivor zombies with supplies inside the backpack. Survivor zombies can be seen in barricaded houses and among hordes. This bag has different ID, but is otherwise undistinguishable.

Trivia

  • The non-survivor item's ID suggests the bag belongs to the ALICE set of load-carrying equipment, which was in the use by the military back when the game takes place.

Code

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

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

Retrieved: Build 41.78.16
item Bag_ALICEpack
    {
        DisplayCategory = Bag,
        Type = Container,
        DisplayName = Large Backpack,
        ClothingItem = Bag_ALICEpack,
        CanBeEquipped = Back,
        WeightReduction	=	85,
        Weight	=	2,
        Capacity	=	27,
        Icon	=	AliceBag,
        OpenSound   =   OpenBag,
        CloseSound   =   CloseBag,
        PutInSound   =   PutItemInBag,
        BloodLocation = Bag,
        RunSpeedModifier = 0.94,
        CanHaveHoles = false,
        AttachmentReplacement = Bag,
        ReplaceInSecondHand = Bag_ALICEpack_LHand holdingbagleft,
        ReplaceInPrimaryHand = Bag_ALICEpack_RHand holdingbagright,
        WorldStaticModel = ALICE_Pack_Ground,
    }

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

Retrieved: Build 41.78.16
item Bag_SurvivorBag
    {
        DisplayCategory = Bag,
        Type = Container,
        DisplayName = Backpack,
        ClothingItem = Bag_SurvivorBag,
        CanBeEquipped = Back,
        WeightReduction	=	85,
        Weight	=	2,
        Capacity	=	27,
        Icon	=	AliceBag,
        OpenSound   =   OpenBag,
        CloseSound   =   CloseBag,
        PutInSound   =   PutItemInBag,
        BloodLocation = Bag,
        RunSpeedModifier = 0.94,
        CanHaveHoles = false,
        AttachmentReplacement = Bag,
        ReplaceInSecondHand = Bag_ALICEpack_LHand holdingbagleft,
        ReplaceInPrimaryHand = Bag_ALICEpack_RHand holdingbagright,
        WorldStaticModel = ALICE_Pack_Ground,
    }

See also