Charcoal: Difference between revisions

From PZwiki
m (Added Tool navbox, and tool category)
m (Distribution table update)
(41 intermediate revisions by 12 users not shown)
Line 1: Line 1:
{{languages|Charcoal}}
{{Header|Project Zomboid|Items|Materials}}
{{Page version|41.78.16}}
{{Infobox item
|name=Charcoal
|model=Charcoal_Model.png
|icon=TZ_CharCoal.png
|icon_name=Charcoal
|category=Material
|weight=8
|primary_use=[[Fuel]]
|max_units=10
|contents=Charcoal
|item_id=Base.Charcoal
}}
'''Charcoal''' is a ''drainable'' item that can be used up to 10 times.
 
==Usage==
Charcoal is used as a source of [[fuel]] for various [[heat source]]s. The burn time is 30 minutes of fuel with each use.
 
It is recommended to save charcoal until after the electricity has shut off, as until then [[Heat source#Oven|ovens]] can be used instead.


{{Items
==Obtaining==
|image = TZ_CharCoal.png
Charcoal can be sustainably gained by putting 5 [[log]]s directly from your inventory into a [[Metal Drum]] and [[Campfire#Lighting|lighting]] it, similarly to a campfire.
|weight = 8
}}


<br />
==Distribution==
The loot distributions can be found in the table(s) below.


Charcoal can be found in crates anywhere, though it is most common in storage areas.
<!--BOT FLAG|Charcoal|41.78.16-->
{{clear}}
<div class="togglebox theme-red">
    <div>Charcoal distribution
        <span class="mw-customtoggle-togglebox-Charcoal" 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-Charcoal">
    <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|crate}}
    | 1
    | 0.05
    |-
    | barbecuestore
    | {{ll|shelves}}
    | 4
    | 50.0
    |-
    | barbecuestore
    | {{ll|shelves}}
    | 4
    | 10.0
    |-
    | barbecuestore
    | {{ll|shelves}}
    | 4
    | 20.0
    |-
    | garagestorage
    | {{ll|crate}}
    | 4
    | 4.0
    |}
</div>
    </div><div style="clear:both;"></div>
    </div></div><div class="toggle large mw-customtoggle-togglebox-Charcoal" title="{{int:show}}/{{int:hide}}"></div></div>
<!--END BOT FLAG|Charcoal|41.78.16-->


== Uses ==
==Code==
{{CodeBox
| {{CodeSnip
  | lang = java
  | line = true
  | start = 1119
  | source = items.txt
  | retrieved = true
  | version = 41.78.16
  | code =
item Charcoal
{
    DisplayCategory = Material,
Weight = 8,
Type = Drainable,
UseWhileEquipped = FALSE,
UseDelta = 0.1,
DisplayName = Charcoal,
Icon = TZ_CharCoal,
WeightEmpty = 0.02,
WorldStaticModel = Charcoal_Ground,
ConsolidateOption = ContextMenu_Merge,
}
}}
}}


Charcoal can be used as fuel in Charcoal-BBQs (red) to create a [[Heat_Source|Heat Source]]. A full bag of charcoal burns for a total of 30 minutes, making it a poor fuel source. A single bag of charcoal can be used '''sixteen''' times, allowing more charcoal to be added to a single cooker. <br />
==See also==
[[File:BBQ_small.png|frame|left|alt=BBQ-Grill model|Small BBQ-Grill]]
*[[Heat source]]
*[[Fuel]]


{{Navbox/Tools}}
{{Navbox items|equipment}}
[[Category:Items]]
[[Category:Tools]]

Revision as of 15:09, 24 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]
Charcoal
Charcoal Model.png
General
Category
Material
Encumbrance
Moodle Icon HeavyLoad.png
8
Function
Properties
Contents
Charcoal
Capacity
10 units
Technical
Item ID
Base.Charcoal

Charcoal is a drainable item that can be used up to 10 times.

Usage

Charcoal is used as a source of fuel for various heat sources. The burn time is 30 minutes of fuel with each use.

It is recommended to save charcoal until after the electricity has shut off, as until then ovens can be used instead.

Obtaining

Charcoal can be sustainably gained by putting 5 logs directly from your inventory into a Metal Drum and lighting it, similarly to a campfire.

Distribution

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

Charcoal distribution Show / Hide
Containers
Building / Room Container Rolls Chance
all crate 1 0.05
barbecuestore shelves 4 50.0
barbecuestore shelves 4 10.0
barbecuestore shelves 4 20.0
garagestorage crate 4 4.0

Code

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

Source: ProjectZomboid\media\scripts\items.txt

Retrieved: Build 41.78.16
item Charcoal
	{
	    DisplayCategory = Material,
		Weight	=	8,
		Type	=	Drainable,
		UseWhileEquipped	=	FALSE,
		UseDelta	=	0.1,
		DisplayName	=	Charcoal,
		Icon	=	TZ_CharCoal,
		WeightEmpty = 0.02,
		WorldStaticModel = Charcoal_Ground,
		ConsolidateOption = ContextMenu_Merge,
	}

See also