Lug Wrench: Difference between revisions

From PZwiki
m (→‎top: category project: "The Game World")
m (Remove lines))
 
(13 intermediate revisions by 4 users not shown)
Line 1: Line 1:
{{Languages}}{{Header|Project Zomboid|Items|Tools|Mechanic Tools|type=Tool|version=Version 41|incver=78.16}}{{Infobox item
{{Header|Project Zomboid|Items|Equipment|Tools|Mechanic tools}}
|display_name=Lug Wrench
{{Page version|41.78.16}}
|name_colour=Tool
{{Infobox item
|name_text_colour=Tool
|name=Lug Wrench
|model=LugWrench_Model.png
|model=LugWrench_Model.png
|icon=LugWrench.png
|icon=LugWrench.png
Line 8: Line 8:
|weight=1
|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==
Line 24: Line 24:


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


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


{{Navbox equipment}}
{{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