Notched Wooden Plank: Difference between revisions

From PZwiki
(3d model image request tag)
(Added model. Removed image improvement tag. Updated code section.)
Line 1: Line 1:
{{Languages}}
{{Languages}}
{{Header|The Game World|Items|Tools|type=Tool|version=Version 41|incver=78.16}}
{{Header|The Game World|Items|Tools|type=Tool|version=Version 41|incver=78.16}}
{{Reupload}} <!-- Needs model image in infobox along with variants in a <gallery> section-->
{{Infobox item
{{Infobox item
|display_name=Notched Wooden Plank
|display_name=Notched Wooden Plank
|model= <!-- model image to go here: PercedWood_Model.png -->
|model=PercedWood_Model.png
|icon=TZ_PerforatedWoodenPlank.png
|icon=TZ_PerforatedWoodenPlank.png
|icon_name=Notched Wooden Plank
|icon_name=Notched Wooden Plank
Line 27: Line 26:


==Code==
==Code==
===Item===
{{CodeBox|
'''''From newitems.txt (Project Zomboid directory/media/scripts/)'''''
{{CodeSnip
{{Retrieved|version=41|incver=78.16}}
|lang=java
<pre>
|source=newitems.txt
    item PercedWood
|retrieved=true
    {
|version=41
        DisplayCategory = Camping,
|incver=78.16
        Type = Normal,
|code=
        DisplayName = Notched Wooden Plank,
item PercedWood
        Icon = TZ_PerforatedWoodenPlank,
{
        Weight = 0.5,
DisplayCategory = Camping,
        WorldStaticModel = PercedWood,
Type = Normal,
    }
DisplayName = Notched Wooden Plank,
</pre>
Icon = TZ_PerforatedWoodenPlank,
Weight = 0.5,
WorldStaticModel = PercedWood,
}
}}
}}


===Crafting===
{{CodeBox|
'''''From recipes.txt (Project Zomboid directory/media/scripts/)'''''
{{CodeSnip
{{Retrieved|version=39|incver=67.5}}
|lang=java
<pre>
|source=recipes.txt
recipe Drill Plank
|retrieved=true
Plank/Log,
|version=41
keep Screwdriver/KitchenKnife/ButterKnife/HuntingKnife/SharpedStone,
|incver=78.16
|code=
recipe Drill Plank
{
Plank/Log,
keep [Recipe.GetItemTypes.Screwdriver]/[Recipe.GetItemTypes.DullKnife]/[Recipe.GetItemTypes.SharpKnife]/SharpedStone,


Result:PercedWood,
Result:PercedWood,
Time:40.0,
Time:40.0,
</pre>
Prop1:Source=2,
Prop2:Source=1,
}
}}
}}


==See also==
==See also==

Revision as of 13:45, 31 December 2023

The Game WorldItemsToolsNotched Wooden Plank
Notched Wooden Plank
PercedWood Model.png
General
Category
Camping
Encumbrance
Moodle Icon HeavyLoad.png
0.5
Function
Fire starting
Technical
Item ID
Base.PercedWood

A notched wooden plank is a wooden plank that has one or more holes drilled into it. It is primarily used to light a campfire when a lighter or matches are not available. The notched wooden plank is used in a fire starting method known in the real world as hand drill fire starting.

Usage

Fire starting

To light a campfire, first ensure that fuel has already been added to the campfire, which will act as the kindling. The player must have the notched wooden plank and a sturdy stick or tree branch in their inventory. Right-clicking the campfire and selecting "Light Fire" > "Notched Wooden Plank + Sturdy Stick" or "Light Fire" > "Notched Wooden Plank + Tree Branch" will cause the player to attempt to light the fire, although there is a chance that they will fail, breaking/destroying the sturdy stick/tree branch. If successful, the campfire will burst into flames, while the sturdy stick/tree branch and notched wooden plank will be returned to the player's inventory. It is not possible to start a fire this way while exhausted.

Fuel

It can be used as a fuel for fires, and lasts for 2 hours if done so.

Recipes

Product XP gained Skill(s) Recipe Ingredient 1 Ingredient 2
TZ PerforatedWoodenPlank.png
Notched Wooden Plank
0 XP none
(keep)
One of:
Plank.png Plank
Logs.png Log

(consumed)

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 PercedWood
{
	DisplayCategory = Camping,
	Type = Normal,
	DisplayName = Notched Wooden Plank,
	Icon = TZ_PerforatedWoodenPlank,
	Weight = 0.5,
	WorldStaticModel = PercedWood,
}
Code icon.png Code snippet! This section contains source code from Project ZomboidShow / Hide

Source: ProjectZomboid\media\scripts\recipes.txt

Retrieved: Build 41.78.16
recipe Drill Plank
{
	Plank/Log,
	keep [Recipe.GetItemTypes.Screwdriver]/[Recipe.GetItemTypes.DullKnife]/[Recipe.GetItemTypes.SharpKnife]/SharpedStone,

	Result:PercedWood,
	Time:40.0,
	Prop1:Source=2,
	Prop2:Source=1,
}

See also