Candle: Difference between revisions

From PZwiki
m (Cleanup)
(Update distribution file)
 
(26 intermediate revisions by 5 users not shown)
Line 1: Line 1:
{{Languages}}{{Header|The Game World|Items|Illumination|version=Version 40|incver=43}}{{Infobox normal
{{Header|Project Zomboid|Items|Equipment|Light sources}}
|display_name=Candle
{{Page version|41.78.16}}
|name_colour=
{{Infobox item
|name_text_colour=
|name=Candle
|image=Candle Model.png
|model=Candle_Model.png
|image_width=300px
|model_width=200px
|alternate_image=Candle.png
|icon=Candle.png
|alternate_name=Candle
|icon_name=Candle
|alternate_link=
|icon2=CandleLit.png
|alternate_image2=CandleLit.png
|icon_name2=Lit Candle
|alternate_name2=Lit Candle
<!--General-->
|alternate_link2=
|category=Light Source
|weight=0.2
|weight=0.2
|function=Light source
|function=Light source
|class_name=Base.Candle<br>Base.CandleLit
<!--Properties-->
}}A '''lit candle''' is a drainable illumination item.
|max_units=333
|light_strength=0.6
<!--Technical-->
|tags=StartFire
|item_id=Base.Candle<br>Base.CandleLit
}}
A '''lit candle''' is a drainable illumination item.


==Usage==
==Usage==
The '''candle''' itself does not do anything. However, if the candle is lit, it will become a light source for the player.
The '''candle''' itself does not do anything. However, if the candle is lit, it will become a light source for the player. It can also then be used to light a [[campfire]].


When equipped, a lit candle projects a ring of light around the player stronger than that of a [[lighter]], but weaker than a [[flashlight]]. It has a limited usable time, which once drained, will be destroyed.  
When equipped, a lit candle projects a ring of light around the player stronger than that of a [[lighter]], but weaker than a [[flashlight]]. It has a limited usable time, which once drained, will be destroyed.


The lit candle can be put out, extinguishing the light source and reverting it to a candle, where it must be relit.  
The lit candle can be put out, extinguishing the light source and reverting it to a candle, where it must be relit.


==Crafting==
==Crafting==
{{Crafting header|ing=2}}
{{Crafting/sandbox2
{{Crafting general|004|ing=2}}
|lit_candle
|}
}}


==Distribution==
==Distribution==
The loot distributions can be found in the table(s) below.
<!--BOT FLAG|Candle|41.78.16-->
{{Clear}}
<div class="togglebox theme-red">
    <div>Candle distribution
        <span class="mw-customtoggle-togglebox-Candle" 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-Candle">
    Effective chance calculations are based off of default loot settings, and median zombie density. The higher the density of zombies in an area, the higher the effective chance of an item spawning. Chance is also influenced by the [[lucky]] and [[unlucky]] traits.    <div class="toggle-content">
<div class="pz-container">
<div id="containers" style="flex-basis:30%">
    {| class="wikitable theme-red" style="margin-right: 15px; width: 95%;"
    |+ {{ll|Containers}}
    ! Building/Room
    ! Container
    ! Effective chance
    |-
    | all
    | {{ll|other}}
    | 1.61%
    |-
    | armysurplus
    | {{ll|counter}}
    | 23.28%
    |-
    | armysurplus
    | {{ll|counter}}
    | 41.14%
    |-
    | armysurplus
    | {{ll|metal_shelves}}
    | 23.28%
    |-
    | armysurplus
    | {{ll|metal_shelves}}
    | 41.14%
    |-
    | armysurplus
    | {{ll|shelves}}
    | 23.28%
    |-
    | armysurplus
    | {{ll|shelves}}
    | 41.14%
    |-
    | closet
    | {{ll|crate}}
    | 23.28%
    |-
    | empty
    | {{ll|crate}}
    | 6.29%
    |-
    | garagestorage
    | {{ll|crate}}
    | 23.28%
    |-
    | hall
    | {{ll|counter}}
    | 6.29%
    |-
    | jewelrystore
    | {{ll|counter}}
    | 6.29%
    |-
    | lobby
    | {{ll|counter}}
    | 6.29%
    |-
    | plazastore1
    | {{ll|counter}}
    | 6.29%
    |-
    | storageunit
    | {{ll|crate}}
    | 23.28%
    |}
</div>
    </div><div style="clear: both;"></div>
    </div></div><div class="toggle large mw-customtoggle-togglebox-Candle" title="{{int:show}}/{{int:hide}}"></div></div>
<!--END BOT FLAG|Candle|41.78.16-->
Candles can be found in wardrobes, counters and gift stores.
Candles can be found in wardrobes, counters and gift stores.


==Code==
==Code==
'''''From items.txt (Project Zomboid directory/media/scripts/)'''''
{{CodeBox|[[File:Candle.png]] {{ID|Candle}}<br>
 
{{CodeSnip
''Candle'' [[File:Candle.png]]
  | lang = java
{{Retrieved|version=40|incver=43}}
  | line = true
 
  | start = 728
<pre>
  | source = items.txt
item Candle
  | retrieved = true
Weight = 0.2,
  | version = 41.78.16
Type = Normal,
  | code =
DisplayName = Candle,
item Candle
Icon = Candle,
    {
</pre>
        DisplayCategory = LightSource,
 
        Weight   =   0.2,
''Lit Candle'' [[File:CandleLit.png]]
        Type   =    Drainable,
{{Retrieved|version=40|incver=43}}
        UseDelta    =   0,
<pre>
        DisplayName   =   Candle,
item CandleLit
        Icon   =    Candle,
LightDistance = 3,
        cantBeConsolided = TRUE,
Weight = 0.2,
        StaticModel = Candle,
Type = Drainable,
        WorldStaticModel = CandleGround,
TorchCone = FALSE,
    }
UseDelta = 0.003,
}}
LightStrength = 0.6,
{{CodeSnip
DisplayName = Lit Candle,
  | lang = java
ActivatedItem = TRUE,
  | line = true
Icon = CandleLit,
  | start = 741
cantBeConsolided = TRUE,
  | source = items.txt
</pre>
  | retrieved = true
  | version = 41.78.16
  | code =
item CandleLit
{
    DisplayCategory = LightSource,
LightDistance = 3,
Weight = 0.2,
Type = Drainable,
    UseWhileUnequipped  =  TRUE,
TorchCone = FALSE,
UseDelta = 0.003,
LightStrength = 0.6,
DisplayName = Lit Candle,
ActivatedItem = TRUE,
Icon = CandleLit,
cantBeConsolided = TRUE,
StaticModel = Candle,
WorldStaticModel = CandleGround,
Tags = StartFire,
}
}}
}}


==See also==
==See also==
*[[Lighter]]
*[[Lighter]]
*[[Matches]]


{{Navbox equipment}}
{{Navbox items|survival}}

Latest revision as of 12:15, 30 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]
Candle
Candle Model.png
Lit Candle
General
Category
Light Source
Encumbrance
Moodle Icon HeavyLoad.png
0.2
Function
Light source
Properties
Capacity
333 units
Light strength
0.6
Technical
Tags
StartFire
Item ID
Base.Candle
Base.CandleLit

A lit candle is a drainable illumination item.

Usage

The candle itself does not do anything. However, if the candle is lit, it will become a light source for the player. It can also then be used to light a campfire.

When equipped, a lit candle projects a ring of light around the player stronger than that of a lighter, but weaker than a flashlight. It has a limited usable time, which once drained, will be destroyed.

The lit candle can be put out, extinguishing the light source and reverting it to a candle, where it must be relit.

Crafting

Product Ingredients Tools Requirements Workstation XP
CandleLit.png
Candle
One of:
Lighter.png Lighter ×1
Matches.png Matches ×1
Each of:
Candle.png Candle ×1
none none none none

Distribution

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

Candle distribution Show / Hide
Effective chance calculations are based off of default loot settings, and median zombie density. The higher the density of zombies in an area, the higher the effective chance of an item spawning. Chance is also influenced by the lucky and unlucky traits.
Containers
Building/Room Container Effective chance
all other 1.61%
armysurplus counter 23.28%
armysurplus counter 41.14%
armysurplus metal_shelves 23.28%
armysurplus metal_shelves 41.14%
armysurplus shelves 23.28%
armysurplus shelves 41.14%
closet crate 23.28%
empty crate 6.29%
garagestorage crate 23.28%
hall counter 6.29%
jewelrystore counter 6.29%
lobby counter 6.29%
plazastore1 counter 6.29%
storageunit crate 23.28%

Candles can be found in wardrobes, counters and gift stores.

Code

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

Candle.png Candle
Source: ProjectZomboid\media\scripts\items.txt

Retrieved: Build 41.78.16
item Candle
    {
        DisplayCategory = LightSource,
        Weight    =    0.2,
        Type    =    Drainable,
        UseDelta    =   0,
        DisplayName    =    Candle,
        Icon    =    Candle,
        cantBeConsolided = TRUE,
        StaticModel = Candle,
        WorldStaticModel = CandleGround,
    }

Source: ProjectZomboid\media\scripts\items.txt

Retrieved: Build 41.78.16
item CandleLit
	{
	    DisplayCategory = LightSource,
		LightDistance	=	3,
		Weight	=	0.2,
		Type	=	Drainable,
	    UseWhileUnequipped  =   TRUE,
		TorchCone	=	FALSE,
		UseDelta	=	0.003,
		LightStrength	=	0.6,
		DisplayName	=	Lit Candle,
		ActivatedItem	=	TRUE,
		Icon	=	CandleLit,
		cantBeConsolided = TRUE,
		StaticModel = Candle,
		WorldStaticModel = CandleGround,
		Tags = StartFire,
	}

See also