Lug Wrench: Difference between revisions

From PZwiki
m (Typo.)
m (Remove lines))
 
(27 intermediate revisions by 9 users not shown)
Line 1: Line 1:
{{languages|Lug Wrench}}
{{Header|Project Zomboid|Items|Equipment|Tools|Mechanic tools}}
{{header|The Game World|Items|Tools|type=Tool|version=Version 39|incver=67.5}}{{Infobox normal
{{Page version|41.78.16}}
|display_name=Lug Wrench
{{Infobox item
|name_colour=Tool
|name=Lug Wrench
|name_text_colour=Tool
|model=LugWrench_Model.png
|image=LugWrench_120px.png
|icon=LugWrench.png
|weight=1.5
|icon_name=Lug Wrench
|weight=1
|primary_use=Remove [[tire]]s
|primary_use=Remove [[tire]]s
|class_name=Base.LugWrench}}A '''lug wrench''' is a tool used in [[vehicles|vehicle]] [[mechanics]].
|item_id=Base.LugWrench}}A '''lug wrench''' is a tool used in [[vehicles|vehicle]] [[mechanics]].


==Usage==
==Usage==
A lug wrench is required to install and uninstall [[tire]]s from [[vehicles]], thus allowing access to [[suspension]] and [[brake]]s.
A lug wrench is required to install and uninstall [[tire]]s from [[vehicles]], thus allowing access to [[suspension]] and [[brake]]s.


The player will not be able to use the lug wrench on a vehicle if they have not read the appropriate [[Recipe Magazines#Mechanics|recipe magazine]] corresponding to the [[Vehicles Guide#Types|vehicle type]].
The player will not be able to use the lug wrench on a vehicle if they have not read the appropriate [[Laines Auto Manual|recipe magazine]] corresponding to the [[Vehicles#Types|vehicle type]].


==Distribution==
==Distribution==
===Buildings===
===Buildings===
Lug wrenches can be found in gas stations, sheds, garages, mechanic, storage units and [[Containers#Crates|crates]],
Lug wrenches can be found in gas stations, sheds, garages, mechanic, storage units and [[Containers#Crates|crates]].


===Vehicles===
===Vehicles===
Line 22: Line 24:


==Code==
==Code==
'''''From vehicleitems.txt (Project Zomboid directory/media/scripts/vehicles/)'''''
{{CodeBox
<pre> item LugWrench
|{{CodeSnip
Weight = 1,
|lang=java
Type = Normal,
|line=false
DisplayName = Lug Wrench,
|source=vehicleitems.txt
Icon = LugWrench,</pre>
|retrieved=true
|version=41.78.16
|code =
item LugWrench
{
  DisplayCategory    = Tool,
  Weight             = 1,
  Type               = Normal,
  DisplayName         = Lug Wrench,
  Icon               = LugWrench,
  MechanicsItem      = TRUE,
  WorldStaticModel    = LugWrench,
}
  }}
}}


==See also==
==See also==
Line 33: Line 49:
*[[Wrench]]
*[[Wrench]]


{{Navbox/Tools}}
{{Navbox items|tools}}
 


[[Category:Vehicles and Mechanics (Project)]]
[[Category:Vehicles and Mechanics (Project)]]
[[Category:Tools]]

Latest revision as of 07:07, 15 April 2024

UI Tick.png
This page has been revised for the current stable version (41.78.16).
Help by adding any missing content. [edit]
Lug Wrench
LugWrench Model.png
General
Encumbrance
Moodle Icon HeavyLoad.png
1
Function
Remove tires
Technical
Item ID
Base.LugWrench

A lug wrench is a tool used in vehicle mechanics.

Usage

A lug wrench is required to install and uninstall tires from vehicles, thus allowing access to suspension and brakes.

The player will not be able to use the lug wrench on a vehicle if they have not read the appropriate recipe magazine corresponding to the vehicle type.

Distribution

Buildings

Lug wrenches can be found in gas stations, sheds, garages, mechanic, storage units and crates.

Vehicles

Can be found in the trunk of vehicles.

Code

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

Source: ProjectZomboid\media\scripts\vehicleitems.txt

Retrieved: Build 41.78.16
item LugWrench
{
  DisplayCategory     = Tool,
  Weight              = 1,
  Type                = Normal,
  DisplayName         = Lug Wrench,
  Icon                = LugWrench,
  MechanicsItem       = TRUE,
  WorldStaticModel    = LugWrench,
}

See also