Paper Bag: Difference between revisions

From PZwiki
(Move gallery to infobox)
m (→‎Usage: Improve tag)
(3 intermediate revisions by the same user not shown)
Line 3: Line 3:
{{Infobox item
{{Infobox item
|name=Paper Bag
|name=Paper Bag
|name_colour=Container
|name_text_colour=Container
|model=PaperBag_Model.png
|model=PaperBag_Model.png
|icon=Paperbag.png
|icon=Paperbag.png
|icon_name=Paper Bag
|icon_name=Paper Bag
|model2=PaperBagJays_Model.png
|model2=PaperBagJays_Model.png
|icon2=Paperbag Jays.png
|icon2=Paperbag_Jays.png
|icon_name2=Paper Bag (Jays)
|icon_name2=Paper Bag (Jays)
|model3=PaperBagSpiffo_Model.png
|model3=PaperBagSpiffo_Model.png
|icon3=Paperbag Spiffos.png
|icon3=Paperbag_Spiffos.png
|icon_name3=Paper Bag (Spiffo's)
|icon_name3=Paper Bag (Spiffo's)
|icon4=Paperbag Anim.png
|model4=PaperBag_Model.png
|icon_name4=Paper Bags (Animated)
|icon4=Paperbag.png
|icon_name4=Lunchbag
<!--GENERAL-->
<!--GENERAL-->
|category=Container
|category=Container
Line 23: Line 22:
|weight_reduction=10
|weight_reduction=10
<!--TECHNICAL DETAILS-->
<!--TECHNICAL DETAILS-->
|item_id = Base.PaperBag<br>Base.Paperbag_Jays<br>Base.Paperbag_Spiffos<br>Base.Lunchbag
|item_id=Base.PaperBag
|item_id2=Base.Paperbag_Jays
|item_id3=Base.Paperbag_Spiffos
|item_id4=Base.Lunchbag
}}
}}


A '''paper bag''' is a common container [[Items|item]].
{{About|a paper bag, sometimes called lunchbag|lunchbox|Lunchbox}}
A '''paper bag''' or ''lunchbag'' is a common container [[Items|item]].


==Usage==
==Usage==
The paper bag is very weak, with 5 capacity and only 10% weight reduction.
The paper bag is very weak, with 5 capacity and only 10% encumbrance reduction.


It can also be used as a [[fuel]] for [[heat source]]s, as a kindling or fire source with 5 minutes of burn time.
{{Improve|section=true|Add proper spawn table}}
It can sometimes be found with food inside of it, such as [[burger]]s and [[fries]].
It can sometimes be found with food inside of it, such as [[burger]]s and [[fries]].


Line 79: Line 85:
===Buildings===
===Buildings===
Often found in restaurants, schools (as a "Lunchbag" with the same stats), and office kitchens.
Often found in restaurants, schools (as a "Lunchbag" with the same stats), and office kitchens.
==Trivia==
*There are currently no paper bags for franchises besides the [[Jay's Chicken]] and [[Spiffo's]].
*The [[Jay's Chicken]] bag has the "Chicca" written on the model. It's unclear if it's a name of the franchise mascot, similar to [[Spiffo]] for [[Spiffo's]].


==Code==
==Code==
Line 182: Line 192:
}}
}}
}}
}}
==See also==
*[[Tote Bag]]
*[[Plastic Bag]]
*[[Lunchbox]]
{{Navbox equipment|containers}}
{{Navbox equipment|containers}}

Revision as of 15:18, 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]
Paper Bag
PaperBag Model.png
PaperBagJays Model.png
PaperBagSpiffo Model.png
PaperBag Model.png
General
Category
Container
Encumbrance
Moodle Icon HeavyLoad.png
0.1 (empty)
4.53 (full)
Equipped
One-handed
Properties
Capacity
5
Technical
Item ID
Base.PaperBag
Base.Paperbag_Jays
Base.Paperbag_Spiffos
Base.Lunchbag
PlushSpiffo.pngThis article is about a paper bag, sometimes called lunchbag. For lunchbox, see Lunchbox.

A paper bag or lunchbag is a common container item.

Usage

The paper bag is very weak, with 5 capacity and only 10% encumbrance reduction.

It can also be used as a fuel for heat sources, as a kindling or fire source with 5 minutes of burn time.

WhiskeyHalf.png
This section may be in need of improvement.
Add proper spawn table
Editors are encouraged to add any missing information to the article, while verifying that the article's current content is correct.

It can sometimes be found with food inside of it, such as burgers and fries.

Distribution

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

Containers
Building/Room Container Rolls Chance
bathroom locker 4 1
locker 4 1
locker 4 1
locker 4 1
breakroom fridge 4 1
gasstorage counter 4 1
hall locker 4 2

Buildings

Often found in restaurants, schools (as a "Lunchbag" with the same stats), and office kitchens.

Trivia

Code

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

Paperbag.png Paper Bag
Source: ProjectZomboid\media\scripts\newitems.txt

Retrieved: Build 41.78.16
item PaperBag
    {
        DisplayCategory = Container,
        WeightReduction = 10,
        Weight = 0.1,
        Type = Container,
        Capacity = 5,
        DisplayName = Paper Bag,
        Icon = Paperbag,
        OpenSound = OpenBag,
        CloseSound = CloseBag,
        PutInSound = PutItemInBag,
        WorldStaticModel = Paperbag_Ground,
     }

Paperbag Spiffos.png Paper Bag
Source: ProjectZomboid\media\scripts\newitems.txt

Retrieved: Build 41.78.16
item Paperbag_Spiffos
    {
        DisplayCategory = Container,
        WeightReduction = 10,
        Weight = 0.1,
        Type = Container,
        Capacity = 5,
        DisplayName = Paper Bag,
        Icon = Paperbag_Spiffos,
        OpenSound = OpenBag,
        CloseSound = CloseBag,
        PutInSound = PutItemInBag,
        WorldStaticModel = PaperbagSpiffo_Ground,
     }

Paperbag Jays.png Paper Bag
Source: ProjectZomboid\media\scripts\newitems.txt

Retrieved: Build 41.78.16
item Paperbag_Jays
    {
        DisplayCategory = Container,
        WeightReduction = 10,
        Weight = 0.1,
        Type = Container,
        Capacity = 5,
        DisplayName = Paper Bag,
        Icon = Paperbag_Jays,
        OpenSound = OpenBag,
        CloseSound = CloseBag,
        PutInSound = PutItemInBag,
        WorldStaticModel = PaperbagJays_Ground,
     }

Paperbag.png Lunchbag
Source: ProjectZomboid\media\scripts\items_food.txt

Retrieved: Build 41.78.16
item Lunchbag
    {
        DisplayName = Lunchbag,
        DisplayCategory = Container,
        Type = Container,
        Weight = 0.1,
        WeightReduction = 10,
        Icon = Paperbag,
        Capacity = 5,
        CloseSound = CloseBag,
        OpenSound = OpenBag,
        PutInSound = PutItemInBag,
        WorldStaticModel = Paperbag_Ground,
     }

See also