Barbed Wire: Difference between revisions

From PZwiki
m ({{improve}})
m (Automated CodeBox update)
(13 intermediate revisions by 4 users not shown)
Line 1: Line 1:
{{Languages}}
{{Header|Project Zomboid|Items|Materials|Metal}}
{{Header|Project Zomboid|Items|type=Construction|version=Version 41|incver=39}}
{{Page version|41.78.16}}
{{improve}}
{{Infobox item
{{Infobox normal
|name=Barbed Wire
|display_name = Barbed Wire
|model=BarbedWire_Model.png
|name_colour = Construction
|icon=BarbedWire.png
|name_text_colour = Construction
|icon_name=Barbed Wire
|image = BarbedWire_Model.png  
|category=Material
|alternate_image=BarbedWire.png
|weight=1
|alternate_name=Barbed Wire
|function=[[Crafting]]
|weight = 1
|item_id=Base.BarbedWire
|primary_use = Construct [[Barbed Fence|barbed fence]]
}}
|class_name = Base.BarbedWire
 
}}'''Barbed wire''' is a crafting component used in [[Carpentry Guide|carpentry]].
'''Barbed wire''' is a crafting component used in [[carpentry]].


==Usage==
==Usage==
Barbed wire is used to string [[Barbed Fence|barbed fence]].
Barbed wire is used in the construction of [[Barbed Fence|barbed fences]].


==Crafting==
==Crafting==
Barbed Wire can be used in the following recipes:
Barbed Wire is used in the following recipes:
{{Crafting header|ing=2}}
{{Crafting header|ing=2}}
{{Crafting carpentry|203|ing=2}}
{{Crafting carpentry|203|ing=2}}
Line 24: Line 24:


==Distribution==
==Distribution==
Barbed Wire is most generally found in warehouses, sheds, garages, and storage closets in homes.
The loot distributions can be found in the table(s) below.
 
{| class="mw-collapsible mw-collapsed wikitable theme-red" data-expandtext="{{int:show}}" data-collapsetext="{{int:hide}}" style="text-align:center; min-width:24em;"
! colspan="4" | Containers
|-
! Building/Room
! Container
! style="width: 3.2em;" | Rolls
! style="width: 3.2em;" | Chance
|-
|toolstore
|[[counter]]
|4
|2
|-
|rowspan="5"|wirefactory
|[[crate]]
|4
|1
|-
|[[crate]]
|4
|1
|-
|[[crate]]
|4
|2
|-
|[[crate]]
|4
|2
|-
|[[crate]]
|4
|5
|}
Barbed wire is most commonly found in warehouses, and tool stores.


==Code==
==Code==
Line 30: Line 66:
| {{CodeSnip
| {{CodeSnip
   | lang = java
   | lang = java
   | line = false
   | line = true
  | start = 57
   | source = items.txt
   | source = items.txt
   | retrieved = true
   | retrieved = true
   | version = 41
   | version = 41.78.16
  | incver = 65
   | code =
   | code =
item BarbedWire
item BarbedWire
{
{
  DisplayCategory     = Material,
    DisplayCategory = Material,
  Weight             = 1,
Weight = 1,
  Type               = Normal,
Type = Normal,
  DisplayName         = Barbed Wire,
DisplayName = Barbed Wire,
  Icon               = BarbedWire,
Icon = BarbedWire,
  MetalValue         = 20,
MetalValue = 20,
  WorldStaticModel   = BarbedWire,
WorldStaticModel = BarbedWire,
}
}  
  }}
}}
}}
}}


Line 53: Line 89:
*[[Barbed Fence]]
*[[Barbed Fence]]


[[Category:Materials]]
[[Category:Carpentry materials]]
[[Category:Construction]]
[[Category:Construction]]
[[Category:Spiffo's Construction Crew (Project)]]
[[Category:Spiffo's Construction Crew (Project)]]

Revision as of 10:07, 26 March 2024

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

Barbed wire is a crafting component used in carpentry.

Usage

Barbed wire is used in the construction of barbed fences.

Crafting

Barbed Wire is used in the following recipes:

Product XP gained Skill(s) Recipe Ingredient 1 Ingredient 2
BarbedFence Carpentry.png
Barbed Fence
1.25 Carpentry Carpentry 5 Hammer.png
Hammer (tag)
(keep)
BarbedWire.png
Barbed Wire x1
(consumed)

Distribution

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

Containers
Building/Room Container Rolls Chance
toolstore counter 4 2
wirefactory crate 4 1
crate 4 1
crate 4 2
crate 4 2
crate 4 5

Barbed wire is most commonly found in warehouses, and tool stores.

Code

Code icon.png Code snippet! This section contains source code from Project ZomboidShow / Hide

Source: ProjectZomboid\media\scripts\items.txt

Retrieved: Build 41.78.16
item BarbedWire
	{
	    DisplayCategory = Material,
		Weight	=	1,
		Type	=	Normal,
		DisplayName	=	Barbed Wire,
		Icon	=	BarbedWire,
		MetalValue = 20,
		WorldStaticModel = BarbedWire,
	}

See also