Jack: Difference between revisions

From PZwiki
m (Added Category:Tools)
m (Automated CodeBox update)
(10 intermediate revisions by the same user not shown)
Line 1: Line 1:
{{Languages}}
{{Header|Project Zomboid|Items|Equipment|Tools|Mechanic tools}}
{{Header/sandbox2|Project Zomboid|Items|Equipment|Tools|Mechanic tools}}
{{Page version|41.78.16}}
{{Page version|41.78.16}}
{{Infobox item
{{Infobox item
|display_name=Jack
|name=Jack
|name_colour=Tool
|name_colour=Tool
|name_text_colour=Tool
|name_text_colour=Tool
Line 11: Line 10:
|weight=1.5
|weight=1.5
|primary_use=Remove [[tire]]s, [[brake]]s, and [[suspension]]
|primary_use=Remove [[tire]]s, [[brake]]s, and [[suspension]]
|class_name=Base.Jack
|item_id=Base.Jack
}}
}}
A '''jack''' is a tool used in [[mechanics]].
A '''jack''' is a tool used in [[mechanics]].


Line 22: Line 22:
The player will not be able to use the jack on a vehicle if they have not read the appropriate [[Laines Auto Manual|recipe magazine]] corresponding to the [[Vehicles#Types|vehicle type]].
The player will not be able to use the jack on a vehicle if they have not read the appropriate [[Laines Auto Manual|recipe magazine]] corresponding to the [[Vehicles#Types|vehicle type]].


{{clear}}
==Distribution==
==Distribution==
The loot distributions can be found in the table(s) below.
The loot distributions can be found in the table(s) below.
Line 29: Line 28:
! colspan="4" | Containers
! colspan="4" | Containers
|-
|-
!Building/Room
! Building/Room
!Container
! Container
! style="width: 3.2em;" |Rolls
! style="width: 3.2em;" | Rolls
! style="width: 3.2em;" |Chance
! style="width: 3.2em;" | Chance
|-
|all
|[[toolcabinet]]
|4
|2
|-
|-
| rowspan="1"|bedroom  
|bedroom  
| [[crate]]  
|[[crate]]  
| 1  
|1  
| 0.2
|0.2
|-
|-
| rowspan="6"|carsupply  
|rowspan="6"|carsupply  
| [[clothingrack]]  
|[[clothingrack]]  
| 4  
|4  
| 2
|2
|-
|-
|[[counter]]
|[[counter]]  
|4
|4  
|2
|2
|-
|-
|[[metal_shelves]]
|[[metal_shelves]]  
|4
|4  
|2
|2
|-
|-
|[[metal_shelves]]
|[[metal_shelves]]  
|4
|4  
|2
|2
|-
|-
|[[metal_shelves]]
|[[metal_shelves]]  
|4
|4  
|2
|2
|-
|-
|[[shelves]]
|[[shelves]]  
|4
|4  
|2
|2
|-
|-
| rowspan="1"|closet  
|closet  
| [[crate]]  
|[[crate]]  
| 4  
|4  
| 2
|2
|-
|-
| rowspan="1"|garagestorage  
|garagestorage  
| [[counter]]  
|[[counter]]  
| 4  
|4  
| 0.5
|0.5
|-
|-
| rowspan="2"|mechanic  
|rowspan="2"|mechanic  
| [[metal_shelves]]  
|[[metal_shelves]]  
| 4  
|4  
| 2
|2
|-
|-
|[[metal_shelves]]
|[[metal_shelves]]  
|4
|4  
|2
|2
|}
|}
Line 103: Line 107:
   | lang = java
   | lang = java
   | line = true
   | line = true
   | start =  
   | start = 4
   | source = vehicleitems.txt
   | source = vehiclesitems.txt
   | retrieved = true
   | retrieved = true
   | version = 41.78.16
   | version = 41.78.16
   | code =
   | code =
item Jack
item Jack
{
    {
    DisplayCategory = Tool,
        DisplayCategory = Tool,
    Weight = 1.5,
        Weight = 1.5,
    Type = Normal,
        Type = Normal,
    DisplayName = Jack,
        DisplayName = Jack,
    Icon = CarJack,
        Icon = CarJack,
    MechanicsItem = TRUE,
        MechanicsItem = TRUE,
    WorldStaticModel = CarJack,
        WorldStaticModel = CarJack,
}
    }  
  }}
}}
}}
}}


Line 125: Line 129:
*[[Wrench]]
*[[Wrench]]


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


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

Revision as of 10:53, 26 March 2024

UI Tick.png
This page has been revised for the current stable version (41.78.16).
Help by adding any missing content. [edit]
Jack
Jack Model.png
General
Encumbrance
Moodle Icon HeavyLoad.png
1.5
Function
Remove tires, brakes, and suspension
Technical
Item ID
Base.Jack

A jack is a tool used in mechanics.

Usage

A jack is required to remove tires, brakes, and suspension from vehicles. It is used to hold up the vehicle, so other tools, such as a lug wrench and wrench can remove the parts.

The tire must be removed using a lug wrench before the brakes and suspension can be accessed with the wrench. The jack is never removed from the player's inventory during this process and instead, the vehicle is effectively "lowered" back to the ground once a part is removed.

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

Distribution

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

Containers
Building/Room Container Rolls Chance
all toolcabinet 4 2
bedroom crate 1 0.2
carsupply clothingrack 4 2
counter 4 2
metal_shelves 4 2
metal_shelves 4 2
metal_shelves 4 2
shelves 4 2
closet crate 4 2
garagestorage counter 4 0.5
mechanic metal_shelves 4 2
metal_shelves 4 2

Vehicles

Profession Container Rolls Chance
All Trunk 2 1.5

Code

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

Source: ProjectZomboid\media\scripts\vehicles\vehiclesitems.txt

Retrieved: Build 41.78.16
item Jack
    {
        DisplayCategory = Tool,
        Weight	=	1.5,
        Type	=	Normal,
        DisplayName	=	Jack,
        Icon	=	CarJack,
        MechanicsItem = TRUE,
        WorldStaticModel = CarJack,
    }

See also