Barbed Wire: Difference between revisions

From PZwiki
(PZ Updater automated execution(task: deploy ReLookup, eid: 7d68e86d8e482b5263b088dc0ba3ce68))
m (Automated CodeBox update)
(25 intermediate revisions by 7 users not shown)
Line 1: Line 1:
{{languages}}
{{Header|Project Zomboid|Items|Materials|Metal}}
{{header|The Game World|Items|type=Construction|version=Version 41|incver=39}}{{Notice|Improve}}{{Infobox normal
{{Page version|41.78.16}}
|display_name = Barbed Wire
{{Infobox item
|name_colour = Construction
|name=Barbed Wire
|name_text_colour = Construction
|model=BarbedWire_Model.png
|image = BarbedWire.png
|icon=BarbedWire.png
|weight = 1
|icon_name=Barbed Wire
|primary_use = Construct [[Barbed Fence|barbed fence]]
|category=Material
|class_name = Base.BarbedWire
|weight=1
}}'''Barbed wire''' is a crafting component used in [[Carpentry Guide|carpentry]].
|function=[[Crafting]]
|item_id=Base.BarbedWire
}}


__TOC__
'''Barbed wire''' is a crafting component used in [[carpentry]].


== Usage ==
==Usage==
Barbed wire is used to string [[Barbed Fence|barbed fence]]. Unknown if it has any other uses.
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}}<!-- Automatically generated by ReLookup. Subject RecipeLookup: 1028 -->
{{Crafting header|ing=2}}
{{Crafting/core|ing=2
{{Crafting carpentry|203|ing=2}}
| product_image = [[File:Barbed fence.png]] | product_name = [[Barbed_fence|Barbed Fence]] |q6=x1 | product_quantity =
| xp = <!-- Not present in the old template. Please fill in manually. -->
| sl = [[Carpentry]] 5
| req =
| f1 = [[File:Hammer.png|link=Hammer|Hammer]] | i1 = [[Hammer]] | q1 = x1
| f2 = [[File:Barbed wire.png]] | i2 = [[Barbed_wire|Barbed Wire]] | q2 = (1 unit) | tag2 = (Consumed)
}}
|}
|}


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


==Distribution==
{| class="mw-collapsible mw-collapsed wikitable theme-red" data-expandtext="{{int:show}}" data-collapsetext="{{int:hide}}" style="text-align:center; min-width:24em;"
Generally really hard to find.
! 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==
'''''From items.txt (Project Zomboid directory/media/scripts/)'''''
{{CodeBox
{{Retrieved|version=41|incver=65}}
| {{CodeSnip
<nowiki> item BarbedWire
  | lang = java
  | line = true
  | start = 57
  | source = items.txt
  | retrieved = true
  | version = 41.78.16
  | code =
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,
}
}  
</nowiki>
}}
}}


== See also ==
==See also==
*[[Carpentry Guide]]
*[[Carpentry]]
*[[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