Scrap Wood: Difference between revisions

From PZwiki
m (Remove 120px, minor fixes)
m (Insert empty line above each {{Navbox}})
(25 intermediate revisions by 5 users not shown)
Line 1: Line 1:
{{Languages}}{{Header|The Game World|Items|type=Construction|version=Version 39|incver=67.5}}{{Infobox normal
{{Header|Project Zomboid|Items|Materials|Wood}}
|display_name=Scrap Wood
{{Page version|41.78.16}}
|name_colour=Construction
{{Infobox item
|name_text_colour=Construction
|name=Scrap Wood
|image=UnsableWood.png
|model=UnsableWood_Model.png
|icon=UnsableWood.png
|icon_name=Scrap Wood
|category=Material
|weight=1
|weight=1
|weight_bkg=1
|function=[[Fuel]]
|primary_use=[[Heat source|Fuel]]
|item_id=Base.UnusableWood
|class_name=Base.UnusableWood
}}
|class_name_bkg=1
'''Scrap wood''' are chunks of wood that can no longer be used for crafting.
}}'''Scrap Wood''' are chunks of wood that can no longer be used for crafting.


==Usage==
==Usage==
===Fuel===
The only use of scrap wood is as a fuel inside a [[campfire]], [[Heat source#Charcoal Barbecue|charcoal barbecue]] or [[Heat source#Antique Oven|antique oven]], and lasts for 1 hour and 24 minutes if done so.


===Fuel===
==Distribution==
The only use of Scrap Wood is as a fuel inside a [[campfire]], [[Heat Source#Charcoal Barbecue|charcoal barbecue]] or [[Heat source#Antique Oven|antique oven]], and lasts for 1 hour and 24 minutes if done so.
The loot distributions can be found in the table(s) below.


==Item distribution==
<!--BOT FLAG|UnusableWood|41.78.16-->
Scrap Wood is a scrap item found only when disassembling [[Carpentry Guide|wooden]] objects. There is a chance, depending on the player's carpentry level, that the dismantled object will be destroyed, leaving Scrap Wood instead of [[plank]]s.
{{clear}}
<div class="togglebox theme-red">
    <div>UnusableWood distribution
        <span class="mw-customtoggle-togglebox-UnusableWood" 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-UnusableWood">
    <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
    |-
    | Not referenced
    | {{ll|JunkBin}}
    | 4
    | 10.0
    |}
</div>
    </div><div style="clear:both;"></div>
    </div></div><div class="toggle large mw-customtoggle-togglebox-UnusableWood" title="{{int:show}}/{{int:hide}}"></div></div>
<!--END BOT FLAG|UnusableWood|41.78.16-->
Scrap wood is a scrap item found only when disassembling wooden objects. There is a chance, depending on the player's carpentry level, that the dismantled object will be destroyed, leaving Scrap Wood instead of [[plank]]s.


==Code==
==Code==
'''''From newitems.txt (Project Zomboid directory/media/scripts/)'''''
{{CodeBox
{{Retrieved|version=39|incver=67.5}}
| {{CodeSnip
<pre>
  | lang = java
    item UnusableWood
  | line = true
         Weight = 1,
  | start = 77
         Type = Normal,
  | source = newitems.txt
         DisplayName = Scrap Wood,
  | retrieved = true
         Icon = UnsableWood,
  | version = 41.78.16
</pre>
  | code =
item UnusableWood
    {
        DisplayCategory = Material,
         Weight = 1,
         Type = Normal,
         DisplayName = Unusable Wood,
         Icon = UnsableWood,
        WorldStaticModel = UnusableWood,
    }
}}
}}


==See also==
==See also==
*[[Carpentry]]
*[[Carpentry]]
*[[Scrap Metal]]
*[[Unusable metal]]


[[Category:Carpentry materials]]
[[Category:Materials]]
[[Category:Spiffo's Construction Crew (Project)]]
[[Category:Spiffo's Construction Crew (Project)]]
{{Navbox items|carpentry_materials}}

Revision as of 15:45, 25 April 2024

Project ZomboidItemsMaterialsWoodScrap Wood
UI Tick.png
This page has been revised for the current stable version (41.78.16).
Help by adding any missing content. [edit]
Scrap Wood
UnsableWood Model.png
General
Category
Material
Encumbrance
Moodle Icon HeavyLoad.png
1
Function
Technical
Item ID
Base.UnusableWood

Scrap wood are chunks of wood that can no longer be used for crafting.

Usage

Fuel

The only use of scrap wood is as a fuel inside a campfire, charcoal barbecue or antique oven, and lasts for 1 hour and 24 minutes if done so.

Distribution

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

UnusableWood distribution Show / Hide
Containers
Building / Room Container Rolls Chance
Not referenced JunkBin 4 10.0

Scrap wood is a scrap item found only when disassembling wooden objects. There is a chance, depending on the player's carpentry level, that the dismantled object will be destroyed, leaving Scrap Wood instead of planks.

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 UnusableWood
    {
        DisplayCategory = Material,
        Weight	=	1,
        Type	=	Normal,
        DisplayName	=	Unusable Wood,
        Icon	=	UnsableWood,
        WorldStaticModel = UnusableWood,
    }

See also