Barbed Wire: Difference between revisions

From PZwiki
(Updated to normalized format)
m (Automated CodeBox update)
(33 intermediate revisions by 11 users not shown)
Line 1: Line 1:
{{languages|:Barbed Fence}}
{{Header|Project Zomboid|Items|Materials|Metal}}
{{header|The Game World|Items|version=Version 37|incver=13}}
{{Page version|41.78.16}}
{{Notice|Improve}}
{{Infobox item
__TOC__
|name=Barbed Wire
{{Items
|model=BarbedWire_Model.png
|image = Barbed wire.png
|icon=BarbedWire.png
|weight = 1
|icon_name=Barbed Wire
|category=Material
|weight=1
|function=[[Crafting]]
|item_id=Base.BarbedWire
}}
}}
<!--Comment: Description of Item and General Information-->
Barbed wire is used to string [[Barbed Fence]]. Unknown if it has any other uses, and generally really hard to find.


== Crafting ==
'''Barbed wire''' is a crafting component used in [[carpentry]].
Barbed Wire can be used in the following recipes:
 
{| class="wikitable sortable" style="text-align:center;"
==Usage==
|-
Barbed wire is used in the construction of [[Barbed Fence|barbed fences]].
! Output
 
! class="unsortable" | Ingredients
==Crafting==
! class="unsortable" | Description
Barbed Wire is used in the following recipes:
! Skill Level
{{Crafting header|ing=2}}
{{RecipeLookup|1028}}
{{Crafting carpentry|203|ing=2}}
|}
|}
==Distribution==
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==
{{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]]


<nowiki>
[[Category:Materials]]
item BarbedWire
[[Category:Carpentry materials]]
DisplayName = Barbed wire,
[[Category:Construction]]
Icon = Wire,
[[Category:Spiffo's Construction Crew (Project)]]
Type = Normal,
Weight = 1
</nowiki>
<br>

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