Matches: Difference between revisions

From PZwiki
No edit summary
(Added boilerplate, added some description (basically identical to the lighter).)
Line 1: Line 1:
__NOTOC__
__NOTOC__
{{languages|Matches}}
{{languages|Matches}}
 
{{header|The Game World|Items|Illumination|version=Version 39|incver=52}}
{{Items
{{Tools
| image = Matches.png
| image = Matches_120px.png
| primaryuse = Start Fires
| otheruses = Light Source
| weight = 0.1
| weight = 0.1
}}
}}
'''Matches''' are a ''drainable'' item with various uses. It can be used to light [[Candle|unlit candles]], [[Molotov cocktail|molotov cocktails]], [[Heat Source#Campfire|campfires]], [[Heat Source#Antique Oven|antique ovens]], burn [[Corpse|corpses]], or as a light source. In order to use a molotov, matches must be equipped in the secondary slot of the inventory. Corpses can be burnt if matches are in the primary slot and a [[Gas Can|gas can]] is in the secondary slot. Matches can be found in many kitchen [[Containers#Counter|counters]].
The light provided by matches is the worst of any light source and will function similarly to the [[lighter]], forming a ring of light around the player, however at a reduced radius. If another light souce isn't in the player's inventory, pressing the 'F' key (default) will equip the matches and light one. Once equipped, pressing 'F' will light and extinguish them, being a handy way to save matches, rather than having it on all the time.


==Crafting==
==Crafting==
Line 15: Line 21:
{{RecipeLookup|4004}}
{{RecipeLookup|4004}}
|}
|}


==Code==
==Code==
  <nowiki>item Matches
'''''From items.txt (Project Zomboid directory/media/scripts/)'''''
{
  <nowiki>
Type = Drainable,
item Matches
DisplayName = Matches,
Weight = 0.1,
Icon = Matches,
Type = Drainable,
Weight = 0.1,
UseWhileEquipped = FALSE,
UseWhileEquipped = false,
UseDelta = 0.1,
}</nowiki>
DisplayName = Matches,
Icon = Matches,
cantBeConsolided = TRUE,
</nowiki>
 


==See Also==
*[[Lighter]]
*[[Flashlight]]
*[[Heat Source]]
*[[Fire]]


{{Navbox/Tools}}
{{Navbox/Tools}}
[[Category:Version 0.2.0p]]
[[Category:Illumination]]

Revision as of 14:34, 2 May 2018


Template:Tools Matches are a drainable item with various uses. It can be used to light unlit candles, molotov cocktails, campfires, antique ovens, burn corpses, or as a light source. In order to use a molotov, matches must be equipped in the secondary slot of the inventory. Corpses can be burnt if matches are in the primary slot and a gas can is in the secondary slot. Matches can be found in many kitchen counters.

The light provided by matches is the worst of any light source and will function similarly to the lighter, forming a ring of light around the player, however at a reduced radius. If another light souce isn't in the player's inventory, pressing the 'F' key (default) will equip the matches and light one. Once equipped, pressing 'F' will light and extinguish them, being a handy way to save matches, rather than having it on all the time.


Crafting

Name Recipe Description













Code

From items.txt (Project Zomboid directory/media/scripts/)

	item Matches
		Weight			= 0.1,
		Type			= Drainable,
		UseWhileEquipped	= FALSE,
		UseDelta		= 0.1,
		DisplayName		= Matches,
		Icon			= Matches,
		cantBeConsolided	= TRUE,


See Also

Template:Navbox/Tools