Jack: Difference between revisions

From PZwiki
m (Automated infobox fix)
m (Automated CodeBox update)
(3 intermediate revisions by the same user not shown)
Line 2: Line 2:
{{Page version|41.78.16}}
{{Page version|41.78.16}}
{{Infobox item
{{Infobox item
|name =Jack
|name=Jack
|name_colour=Tool
|name_colour=Tool
|name_text_colour=Tool
|name_text_colour=Tool
Line 10: 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
}}
}}


Line 28: 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
|-
|-
| rowspan="1"|bedroom
|all
| [[crate]]
|[[toolcabinet]]  
| 1
|4
| 0.2
|2
|-
|-
| rowspan="6"|carsupply
|bedroom
| [[clothingrack]]
|[[crate]]  
| 4
|1
| 2
|0.2
|-
|-
|[[counter]]
|rowspan="6"|carsupply
|4
|[[clothingrack]]  
|4  
|2
|2
|-
|-
|[[metal_shelves]]
|[[counter]]  
|4
|4  
|2
|2
|-
|-
|[[metal_shelves]]
|[[metal_shelves]]  
|4
|4  
|2
|2
|-
|-
|[[metal_shelves]]
|[[metal_shelves]]  
|4
|4  
|2
|2
|-
|-
|[[shelves]]
|[[metal_shelves]]  
|4
|4  
|2
|2
|-
|-
| rowspan="1"|closet
|[[shelves]]  
| [[crate]]
|4  
| 4
|2
| 2
|-
|-
| rowspan="1"|garagestorage
|closet
| [[counter]]
|[[crate]]  
| 4
|4  
| 0.5
|2
|-
|-
| rowspan="2"|mechanic
|garagestorage
| [[metal_shelves]]
|[[counter]]  
| 4
|4  
| 2
|0.5
|-
|-
|[[metal_shelves]]
|rowspan="2"|mechanic
|4
|[[metal_shelves]]
|4
|2
|-
|[[metal_shelves]]  
|4  
|2
|2
|}
|}
Line 102: 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,
}
    }  
  }}
}}
}}
}}



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