Cold Pack: Difference between revisions

From PZwiki
(Automated crafting system update)
(→‎Distribution: Add table)
(4 intermediate revisions by 3 users not shown)
Line 3: Line 3:
{{Infobox item
{{Infobox item
|name=Cold Pack
|name=Cold Pack
|name_colour=Electric
|name_text_colour=Electric
|model=ColdPack_Model.png
|model=ColdPack_Model.png
|model_width=200px
|icon=Coldpack.png
|icon=Coldpack.png
|icon_name=Cold Pack
|icon_name=Cold Pack
Line 14: Line 11:
|item_id=Base.Coldpack
|item_id=Base.Coldpack
}}
}}
 
{{Quote|text=Used in improvised defensive devices. Requires known recipe or Engineer profession.|author=In-game tooltip.}}
{{Quote|text=Used in improvised defensive devices. Requires known recipe or Engineer profession.|author=In-game tooltip.}}A '''cold pack''' is an [[Items|item]] used in [[crafting]] [[electrical]] items.
A '''cold pack''' is an [[Items|item]] used in [[crafting]] [[electrical]] items.


==Usage==
==Usage==
Line 28: Line 25:


==Distribution==
==Distribution==
'''Cold packs''' are household items found in first aid kits and by [[foraging]].
The loot distributions can be found in the table(s) below.
 
<!--BOT FLAG|Coldpack|41.78.16-->
{{clear}}
<div class="togglebox theme-red">
    <div>Coldpack distribution
        <span class="mw-customtoggle-togglebox-Coldpack" 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-Coldpack">
    <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
    |-
    | all
    | {{ll|Bag_DoctorBag}}
    | 1
    | 10.0
    |}
</div>
    </div><div style="clear:both;"></div>
    </div></div><div class="toggle large mw-customtoggle-togglebox-Coldpack" title="{{int:show}}/{{int:hide}}"></div></div>
<!--END BOT FLAG|Coldpack|41.78.16-->
 
Cold packs are household items found in first aid kits and by [[foraging]].


==Code==
==Code==
Line 49: Line 72:
         Tooltip = Tooltip_ItemTraps,
         Tooltip = Tooltip_ItemTraps,
         WorldStaticModel = ColdPack,
         WorldStaticModel = ColdPack,
     }  
     }
}}
}}
}}
}}
Line 55: Line 78:
==See also==
==See also==
*[[Electrical]]
*[[Electrical]]
{{Navbox items|first_aid_materials}}


[[Category:Electricals and Transmission (Project)]]
[[Category:Electricals and Transmission (Project)]]
[[Category:First aid materials]]
[[Category:First aid materials]]

Revision as of 02:56, 25 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]
Cold Pack
ColdPack Model.png
General
Category
First Aid
Encumbrance
Moodle Icon HeavyLoad.png
0.1
Function
Technical
Item ID
Base.Coldpack
Used in improvised defensive devices. Requires known recipe or Engineer profession.
— In-game tooltip.

A cold pack is an item used in crafting electrical items.

Usage

Cold packs are used to create smoke bombs.

Note that cold packs currently have no use in player health.

Crafting

Product Ingredients Tools Requirements Workstation XP
Smokebomb.png
Smoke Bomb
Coldpack.png Cold Pack ×1
Newspaper.png Newspaper ×2
Rag.png Ripped Sheets ×1
none
Profession engineer.png
Engineer occupation
(or)
MagazineMechanics.png
Engineer Magazine Vol.2
none none

Distribution

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

Coldpack distribution Show / Hide
Containers
Building / Room Container Rolls Chance
all Bag_DoctorBag 1 10.0

Cold packs are household items found in first aid kits and by foraging.

Code

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

Source: ProjectZomboid\media\scripts\newitems.txt

Retrieved: Build 41.78.16
item Coldpack
    {
        DisplayCategory = FirstAid,
        Weight	=	0.1,
        Type	=	Normal,
        DisplayName	=	Cold Pack,
        Icon	=	Coldpack,
        Tooltip = Tooltip_ItemTraps,
        WorldStaticModel = ColdPack,
    }

See also