Tire Pump: Difference between revisions

From PZwiki
m (Cleanup)
(23 intermediate revisions by 7 users not shown)
Line 1: Line 1:
{{Languages}}{{header|The Game World|Items|Tools|Mechanic Tools|type=Tool|version=Version 39|incver=67.5}}{{Infobox normal
{{Header|Project Zomboid|Items|Equipment|Tools|Mechanic tools}}
|display_name=Tire Pump
{{Page version|41.78.16}}
|name_colour=Tool
{{Infobox item
|name_text_colour=Tool
|name=Tire Pump
|image=TirePump.png
|model=TirePump_Model.png
|icon=TirePump.png
|icon_name=Tire Pump
|weight=2
|weight=2
|primary_use=Inflate [[tire]]s
|primary_use=Inflate [[tire]]s
|class_name=Base.TirePump}}A '''tire pump''' is a tool used in [[vehicles|vehicle]] [[mechanics]].
|item_id=Base.TirePump}}
A '''tire pump''' is a tool used in [[Vehicles|vehicle]] [[mechanics]].


==Usage==
==Usage==
A tire pump is used to inflate the [[tire]]s of a vehicle. Tires have a maximum tire pressure of 40 and will not increase beyond this. This does not require the player to have read any [[Recipe Magazines#Mechanics|recipe magazines]] and can therefore be performed on any [[Vehicles Guide#Types|vehicle type]].
A tire pump is used to inflate the [[tire]]s of a vehicle. Tires have a maximum tire pressure of 40 and will not increase beyond this. This does not require the player to have read any [[Laines Auto Manual|recipe magazines]] and can therefore be performed on any [[Vehicles#Types|vehicle type]].


To inflate a tire, open the Vehicle Mechanics menu and right-click on the wheel in question. Note that tires can be overfilled, and the current/max pressure will be shown in the upper right. Move or choose to inflate the next tire to cancel the inflation.
To inflate a tire, open the Vehicle Mechanics menu and right-click on the wheel in question. Note that tires can be overfilled, and the current/max pressure will be shown in the upper right. Move or choose to inflate the next tire to cancel the inflation.
Line 16: Line 19:


==Distribution==
==Distribution==
{{Improve|section=true|Missing distrubiton table}}[[Category:Articles requiring distribution tables]]


===Buildings===
===Buildings===
Tire pumps can be found in gas stations, sheds, garages, mechanic, storage units and [[Containers#Crates|crates]],  
Tire pumps can be found in gas stations, sheds, garages, mechanic, storage units and [[Containers#Crates|crates]],


===Vehicles===
===Vehicles===
Line 24: Line 28:


==Code==
==Code==
'''''From vehicleitems.txt (Project Zomboid directory/media/scripts/vehicles/)'''''
{{CodeBox
{{Retrieved|version=41|incver=78}}
| {{CodeSnip
<pre>
|lang=java
|line=true
|start=26
|source=vehicleitems.txt
|retrieved=true
|version=41.78.16
     item TirePump
     item TirePump
     {
     {
Line 37: Line 46:
         WorldStaticModel = TirePump,
         WorldStaticModel = TirePump,
     }
     }
</pre>
  }}
}}


==See also==
==See also==
Line 43: Line 53:
*[[Jack]]
*[[Jack]]


{{Navbox equipment}}
{{Navbox items|tools}}
 


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

Revision as of 23:04, 19 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]
Tire Pump
TirePump Model.png
General
Encumbrance
Moodle Icon HeavyLoad.png
2
Function
Inflate tires
Technical
Item ID
Base.TirePump

A tire pump is a tool used in vehicle mechanics.

Usage

A tire pump is used to inflate the tires of a vehicle. Tires have a maximum tire pressure of 40 and will not increase beyond this. This does not require the player to have read any recipe magazines and can therefore be performed on any vehicle type.

To inflate a tire, open the Vehicle Mechanics menu and right-click on the wheel in question. Note that tires can be overfilled, and the current/max pressure will be shown in the upper right. Move or choose to inflate the next tire to cancel the inflation.

The tire pump is not required to deflate a tire.

Distribution

WhiskeyHalf.png
This section may be in need of improvement.
Missing distrubiton table
Editors are encouraged to add any missing information to the article, while verifying that the article's current content is correct.

Buildings

Tire pumps 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 TirePump
   {
       DisplayCategory = Tool,
       Weight	=	2,
       Type	=	Normal,
       DisplayName	=	Tire Pump,
       Icon	=	TirePump,
       MechanicsItem = TRUE,
       WorldStaticModel = TirePump,
   }[[Category:Version 41.78.16
   item TirePump
   {
       DisplayCategory = Tool,
       Weight	=	2,
       Type	=	Normal,
       DisplayName	=	Tire Pump,
       Icon	=	TirePump,
       MechanicsItem = TRUE,
       WorldStaticModel = TirePump,
   }]] 

See also