Barbed Wire: Difference between revisions

From PZwiki
(Removed Future Notice since I've now found this in game twice with out mods (Desura Release 2.9.9.10))
m (Automated CodeBox update)
(44 intermediate revisions by 16 users not shown)
Line 1: Line 1:
{{Notice|Improve}}
{{Header|Project Zomboid|Items|Materials|Metal}}
{{Page version|41.78.16}}
{{Infobox item
|name=Barbed Wire
|model=BarbedWire_Model.png
|icon=BarbedWire.png
|icon_name=Barbed Wire
|category=Material
|weight=1
|function=[[Crafting]]
|item_id=Base.BarbedWire
}}
 
'''Barbed wire''' is a crafting component used in [[carpentry]].
 
==Usage==
Barbed wire is used in the construction of [[Barbed Fence|barbed fences]].


{{Items
==Crafting==
|image = Barbed wire.png
Barbed Wire is used in the following recipes:
|weight = ?
{{Crafting header|ing=2}}
}}
{{Crafting carpentry|203|ing=2}}
Barbed wire is used to string [[Barbed Fence]]
|}


== Crafting ==
==Distribution==
<!--list of crafting recipes the item is used in-->
The loot distributions can be found in the table(s) below.
Barbed Wire can be used in the following recipes:


{| class="wikitable" width="550" style="text-align:center;"
{| 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
|-
|-
! Ingredients || Other Items || Output || Description
|[[crate]]
|4
|2
|-
|-
| Barbed Wire || None || [[Barbed Fence]] || A wire fence.
|[[crate]]  
|4
|5
|}
|}
Barbed wire is most commonly found in warehouses, and tool stores.
==Code==
{{CodeBox
| {{CodeSnip
  | lang = java
  | line = true
  | start = 57
  | source = items.txt
  | retrieved = true
  | version = 41.78.16
  | code =
item BarbedWire
{
    DisplayCategory = Material,
Weight = 1,
Type = Normal,
DisplayName = Barbed Wire,
Icon = BarbedWire,
MetalValue = 20,
WorldStaticModel = BarbedWire,
}
}}
}}
==See also==
*[[Carpentry]]
*[[Barbed Fence]]


[[Category:items]]
[[Category:Materials]]
[[Category:Carpentry materials]]
[[Category:Construction]]
[[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