Kindling: Difference between revisions

From PZwiki
mNo edit summary
(Remove old crafting system)
 
(29 intermediate revisions by 6 users not shown)
Line 1: Line 1:
{{languages|Kindle}}
{{Header|Project Zomboid|Items|Obsolete items}}
{{header|The Game World|Items|Obsolete Items|Removed Items|type=Notice|version=Version 39|incver=67.5}}{{Notice|Obsolete|link=Notched Wooden Plank}}{{Items|image = Kindling.png |weight = 0.5}}
{{Page version|41.78.16}}
{{About|the removed camping item used to light campfires|the new method|[[Notched Wooden Plank]]}}
{{Obsolete|item=true|2=Notched Wooden Plank}}
Kindle no longer exists as an item in updates beyond [[Version history#26|build 26]]; in order to light a [[campfire]] with the new wooden plank and stick method, one [[Notched_Wooden_Plank|notched wooden plank]], one [[Sturdy_Stick|sturdy stick]], and one [[Items#Fuel|fuel item]] must be added to the campfire by right-clicking it.
{{Improve|Fix crafting to new system}}
== Crafting ==
{{Infobox item
{{Crafting table header}}
|name=Kindling
{{RecipeLookup|4008}}
|icon=TZ_AntiquatedLighter.png
{{Crafting table footer}}
|icon_name=Kindling
|category=Material
|weight=0.5
|function=Light [[campfire]]
|item_id=Base.FireWoodKit
}}
'''Kindling''' is a removed [[Items|item]] previously used to light a [[campfire]].


==Usage==
Kindling was removed in a version prior to [[Version history#Build 26|build 26]] and replaced by the [[wikipedia:Hand drill|hand drill]] method, using a [[Notched Wooden Plank|notched wooden plank]], one [[Sturdy Stick|sturdy stick]], and one [[fuel]] item, then right-clicking the [[campfire]].
==Former crafting==
<nowiki>
{{Crafting header|ing=2}}
{{Crafting|ing=2
| product_image = [[File:Kindling.png|link=Kindling]]
| product_name = [[Kindling]]
| product_quantity =
| rec =
| xp = <!-- Not present in the old template. Please fill in manually. -->
| f1 = [[File:TZ_PerforatedWoodenPlank.png|link=Notched Wooden Plank]]
| i1 = [[Notched Wooden Plank]]
| q1 =
| tag1 = (consumed)
| f2 = [[File:TZ_WoodenStick.png|link=Sturdy Stick]]
| i2 = [[Sturdy Stick]]
| q2 =
| tag2 = (consumed)
| sl = ''none''
}}
|}
</nowiki>
==Code==
{{CodeBox
| {{CodeSnip
  | lang = java
  | line = true
  | start = 2389
  | source = newitems.txt
  | retrieved = true
  | version = 41.78.16
  | code =
item FireWoodKit
    {
        DisplayCategory = Camping,
        Type = Normal,
        DisplayName = Kindling,
        Icon = TZ_AntiquatedLighter,
        Weight = 0.5,
OBSOLETE = true
    }
}}}}
==See also==
*[[Lighter]]
*[[Matches]]
*[[Tent Kit]]
{{Navbox items}}


[[Category:Tools]]
[[Category:Tools]]

Latest revision as of 10:51, 28 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]
BoxSmall.png
This item has been removed from the game.
It has been replaced by Notched Wooden Plank.
WhiskeyHalf.png
This article may be in need of improvement.
Fix crafting to new system
Editors are encouraged to add any missing information to the article, while verifying that the article's current content is correct.
Kindling
Kindling
General
Category
Material
Encumbrance
Moodle Icon HeavyLoad.png
0.5
Function
Light campfire
Technical
Item ID
Base.FireWoodKit

Kindling is a removed item previously used to light a campfire.

Usage

Kindling was removed in a version prior to build 26 and replaced by the hand drill method, using a notched wooden plank, one sturdy stick, and one fuel item, then right-clicking the campfire.

Former crafting

{{Crafting header|ing=2}} {{Crafting|ing=2 | product_image = [[File:Kindling.png|link=Kindling]] | product_name = [[Kindling]] | product_quantity = | rec = | xp = <!-- Not present in the old template. Please fill in manually. --> | f1 = [[File:TZ_PerforatedWoodenPlank.png|link=Notched Wooden Plank]] | i1 = [[Notched Wooden Plank]] | q1 = | tag1 = (consumed) | f2 = [[File:TZ_WoodenStick.png|link=Sturdy Stick]] | i2 = [[Sturdy Stick]] | q2 = | tag2 = (consumed) | sl = ''none'' }} |}

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 FireWoodKit
    {
        DisplayCategory = Camping,
        Type = Normal,
        DisplayName = Kindling,
        Icon = TZ_AntiquatedLighter,
        Weight = 0.5,
		OBSOLETE = true
    }

See also