Scrap Wood: Difference between revisions

From PZwiki
m (Insert empty line above each {{Navbox}})
(32 intermediate revisions by 7 users not shown)
Line 1: Line 1:
{{Items
{{Header|Project Zomboid|Items|Materials|Wood}}
|image = UnsableWood.png  
{{Page version|41.78.16}}
|weight = 1
{{Infobox item
|name=Scrap Wood
|model=UnsableWood_Model.png
|icon=UnsableWood.png
|icon_name=Scrap Wood
|category=Material
|weight=1
|function=[[Fuel]]
|item_id=Base.UnusableWood
}}
}}
{{Notice|Improve}}
'''Scrap wood''' are chunks of wood that can no longer be used for crafting.
Small chunks of scrap wood that serve no apparent purpose.


== How to Acquire ==
==Usage==
Unusable Wood is a scrap item currently found only(?) when disassembling wooden objects. When disassembling there is a current chance (% unknown, possibly depends on carpentry level and resources required to build object) that you will receive Unusable Wood instead of a [[Plank | Woodplank]] that went into the object's creation.
===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.


== Object Usage ==
==Distribution==
The only currently known use of this item is usage as fuel inside a [[Campfire]] or [[Heat Source#BBQ-Grill|Small BBQ-Grill]]. The current burn time of the object is 1 hour and 24 minutes.
The loot distributions can be found in the table(s) below.


== Code ==
<!--BOT FLAG|UnusableWood|41.78.16-->
<nowiki>
{{clear}}
     item UnusableWood
<div class="togglebox theme-red">
        Weight = 1,
    <div>UnusableWood distribution
        Type = Normal,
        <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>
        DisplayName = Unusable Wood,
     <div class="mw-collapsible mw-collapsed" id="mw-customcollapsible-togglebox-UnusableWood">
        Icon = UnsableWood,
    <div class="toggle-content"><div style="display: flex;"><div style="float:left;">
</nowiki>
    {| 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.


[[Category:Carpentry]]
==Code==
{{CodeBox
| {{CodeSnip
  | lang = java
  | line = true
  | start = 77
  | source = newitems.txt
  | retrieved = true
  | version = 41.78.16
  | code =
item UnusableWood
    {
        DisplayCategory = Material,
        Weight = 1,
        Type = Normal,
        DisplayName = Unusable Wood,
        Icon = UnsableWood,
        WorldStaticModel = UnusableWood,
    }
}}
}}
 
==See also==
*[[Carpentry]]
*[[Scrap Metal]]
*[[Unusable metal]]
 
[[Category:Carpentry materials]]
[[Category:Materials]]
[[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