Cold Pack: Difference between revisions

From PZwiki
m (Automated 'items' capitalisation)
(→‎Distribution: Add table)
(11 intermediate revisions by 3 users not shown)
Line 2: Line 2:
{{Page version|41.78.16}}
{{Page version|41.78.16}}
{{Infobox item
{{Infobox item
|display_name=Cold Pack
|name=Cold Pack
|name_colour=Electric
|model=ColdPack_Model.png
|name_text_colour=Electric
|model=ColdPack Model.png
|model_width=200px
|icon=Coldpack.png
|icon=Coldpack.png
|icon_name=Cold Pack
|icon_name=Cold Pack
Line 12: Line 9:
|weight=0.1
|weight=0.1
|primary_use=[[Crafting]]
|primary_use=[[Crafting]]
|class_name=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 23: Line 20:


==Crafting==
==Crafting==
{{Crafting header|ing=3}}
{{Crafting/sandbox2
{{Crafting electrical|305|ing=3}}
|smoke_bomb
|}
}}


==Distribution==
==Distribution==
'''Cold packs''' are common household items found in [[Containers#Freezer|freezers]] and first aid kits.
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 35: Line 58:
   | lang = java
   | lang = java
   | line = true
   | line = true
   | start = 0
   | start = 97
   | source = newitems.txt
   | source = newitems.txt
   | retrieved = true
   | retrieved = true
Line 41: Line 64:
   | code =
   | code =
item Coldpack
item Coldpack
{
    {
  DisplayCategory = FirstAid,
        DisplayCategory = FirstAid,
  Weight = 0.1,
        Weight = 0.1,
  Type = Normal,
        Type = Normal,
  DisplayName = Cold Pack,
        DisplayName = Cold Pack,
  Icon = Coldpack,
        Icon = Coldpack,
  Tooltip = Tooltip_ItemTraps,
        Tooltip = Tooltip_ItemTraps,
  WorldStaticModel = ColdPack,
        WorldStaticModel = ColdPack,
}
    }
  }}
}}
}}
}}


==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