Cold Pack: Difference between revisions

From PZwiki
(added model + update code block)
m (Minor cleanup)
Line 1: Line 1:
{{languages}}
{{Languages}}{{Header|The Game World|Items|Electricity and Engineering|type=Electric|version=Version 41|incver=78.16}}{{Infobox normal
{{header|The Game World|Items|Electricity and Engineering|type=Electric|version=Version 41|incver=78.16}}{{Infobox normal
|display_name=Cold Pack
|display_name = Cold Pack
|name_colour=Electric
|name_colour = Electric
|name_text_colour=Electric
|name_text_colour = Electric
|image=ColdPack Model.png
|image = ColdPack_Model.png
|image_width=200px
|image_width = 200px
|alternate_image=Coldpack.png
|alternate_image = Coldpack.png
|alternate_name=Cold Pack
|alternate_name = Cold Pack
|category=First Aid
|category = First Aid
|weight=0.1
|weight = 0.1
|primary_use=[[Crafting]]
|primary_use = [[Crafting]]
|class_name=Base.Coldpack
|class_name = Base.Coldpack
}}{{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.
}}{{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.


==Usage==
==Usage==
Line 30: Line 29:
'''''From newitems.txt (Project Zomboid directory/media/scripts/)'''''
'''''From newitems.txt (Project Zomboid directory/media/scripts/)'''''
{{Retrieved|version=41|incver=78.16}}
{{Retrieved|version=41|incver=78.16}}
<pre>   item Coldpack
<pre>
    item Coldpack
     {
     {
         DisplayCategory = FirstAid,
         DisplayCategory = FirstAid,
Line 39: Line 39:
         Tooltip = Tooltip_ItemTraps,
         Tooltip = Tooltip_ItemTraps,
         WorldStaticModel = ColdPack,
         WorldStaticModel = ColdPack,
     }</pre>
     }
</pre>


==See also==
==See also==
*[[Electrical|Electrical Guide]]
*[[Electrical]]


[[Category:Electricals and Transmission (Project)]]
[[Category:Electricals and Transmission (Project)]]

Revision as of 22:17, 23 June 2023

Cold Pack
Cold Pack
Cold Pack
General
Category First Aid
Encumbrance
Heavy Load
0.1
Function Crafting
Technical details
Base 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 XP gained Skill(s) Recipe Ingredient 1 Ingredient 2 Ingredient 3
Smokebomb.png
Smoke Bomb
0 XP none Engineer
OR
Engineer Magazine Vol. 2
Coldpack.png
Cold Pack
(consumed)
Newspaper.png
Newspaper x2
(consumed)
Rag.png
Ripped Sheets
(consumed)

Distribution

Cold packs are common household items found in freezers.

Code

From newitems.txt (Project Zomboid directory/media/scripts/) 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