Cold Pack: Difference between revisions

From PZwiki
(→‎Distribution: Add table)
(30 intermediate revisions by 7 users not shown)
Line 1: Line 1:
{{languages|Cold Pack}}
{{Header|Project Zomboid|Items|Materials}}
{{header|The Game World|Items|Electricity and Engineering|type=Electric|version=Version 40|incver=5}}{{Infobox normal
{{Page version|41.78.16}}
|display_name = Cold Pack
{{Infobox item
|name_colour = Electric
|name=Cold Pack
|name_text_colour = Electric
|model=ColdPack_Model.png
|image = Coldpack.png
|icon=Coldpack.png
|weight = 0.1
|icon_name=Cold Pack
|primary_use = [[Crafting]]
|category=First Aid
|class_name = Base.Coldpack
|weight=0.1
}}{{quote|text=Used in improvised defensive devices. Requires known recipe or Engineer profession.|author=In-game tooltip.}}A '''cold pack''' is an [[item]] used in [[crafting]] [[electrical]] items.
|primary_use=[[Crafting]]
|item_id=Base.Coldpack
}}
{{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.


==Usage==
==Usage==
Line 16: Line 20:


==Crafting==
==Crafting==
{{Crafting table header}}
{{Crafting/sandbox2
{{RecipeLookup|7017}}
|smoke_bomb
{{Crafting table footer}}
}}


==Distribution==
==Distribution==
'''Cold packs''' are common household items found in [[Containers#Freezer|freezers]].
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==
'''''From newitems.txt (Project Zomboid directory/media/scripts/)'''''
{{CodeBox
{{Retrieved|version=40|incver=5}}
| {{CodeSnip
<pre> item Coldpack
  | lang = java
Weight = 0.1,
  | line = true
Type = Normal,
  | start = 97
DisplayName = Cold Pack,
  | source = newitems.txt
Icon = Coldpack,
  | retrieved = true
Tooltip = Tooltip_ItemTraps,</pre>
  | version = 41.78.16
  | code =
item Coldpack
    {
        DisplayCategory = FirstAid,
        Weight = 0.1,
        Type = Normal,
        DisplayName = Cold Pack,
        Icon = Coldpack,
        Tooltip = Tooltip_ItemTraps,
        WorldStaticModel = ColdPack,
    }
}}
}}


==See also==
==See also==
*[[Electrical|Electrical Guide]]
*[[Electrical]]
 
{{Navbox items|first_aid_materials}}


[[Category:Electricals and Transmission (Project)]]
[[Category:Electricals and Transmission (Project)]]
[[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