Paper Bag: Difference between revisions

From PZwiki
(Remove animated icon, add lunchag, about, see also, fire usage, overall minor fixes)
m (→‎Usage: Improve tag)
(2 intermediate revisions by the same user not shown)
Line 6: Line 6:
|icon=Paperbag.png
|icon=Paperbag.png
|icon_name=Paper Bag
|icon_name=Paper Bag
|model2=PaperBag_Model.png
|model2=PaperBagJays_Model.png
|icon2=Paperbag.png
|icon2=Paperbag_Jays.png
|icon_name2=Lunchbag
|icon_name2=Paper Bag (Jays)
|model3=PaperBagJays_Model.png
|model3=PaperBagSpiffo_Model.png
|icon3=Paperbag_Jays.png
|icon3=Paperbag_Spiffos.png
|icon_name3=Paper Bag (Jays)
|icon_name3=Paper Bag (Spiffo's)
|model4=PaperBagSpiffo_Model.png
|model4=PaperBag_Model.png
|icon4=Paperbag_Spiffos.png
|icon4=Paperbag.png
|icon_name4=Paper Bag (Spiffo's)
|icon_name4=Lunchbag
<!--GENERAL-->
<!--GENERAL-->
|category=Container
|category=Container
Line 36: Line 36:
It can also be used as a [[fuel]] for [[heat source]]s, as a kindling or fire source with 5 minutes of burn time.
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 84: 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==

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