Trunk Lid: Difference between revisions

From PZwiki
m (Automated class_name fix)
(updated to new infobox & clarified/elaborated on installing)
Line 1: Line 1:
{{Header|Project Zomboid|Vehicles|Vehicle parts}}
{{Header|Project Zomboid|Vehicles|Vehicle parts}}
{{Page version|41.78.16}}
{{Page version|41.78.16}}
{{Infobox vehicle part
{{Infobox vehicle part/sandbox
|name = Trunk Lid
|name=Trunk Lid
|name_colour = mechanics
|model=CarTrunkLid Model.png
|text_colour = mechanics
|icon=EngineDoor.png
|image = EngineDoor.png
|category=Vehicle Maintenance
|category = Item
|weight=15.0
|weight = 15.0
|function=Prevents items from falling out of the [[trunk]].
|function = Prevents items from falling out of the [[Trunk]].
|chance_damaged=25
|tool = [[Wrench]]
|tool=[[Wrench]]
|item_id = [[#Item IDs|Item IDs]]
|skill=[[Mechanics]] 3
|item_id=Base.TrunkDoor1
|item_id2=Base.TrunkDoor2
|item_id3=Base.TrunkDoor3
|item_id_more=Item IDs
}}
}}


Line 17: Line 21:


==Usage==
==Usage==
===Installing===
===Installing/Uninstalling===
A trunk lid can be fitted onto the rear of a vehicle with a [[Wrench]] at [[Mechanics]] level 3 without possibility of damage.
A trunk lid can be installed or uninstalled from a vehicle using a [[wrench]] so long as the recipe has been [[Laines Auto Manual|learned]] for that [[Vehicles#Types|vehicle type]]. Each level of [[mechanics]] will decrease the chance of causing damage and increase the chance of success, with level 3 resulting in no damage and 100% chance of success.  


It is not possible to mix different classes of car parts. For example, a '''heavy duty''' class trunk lid cannot be fitted onto a '''sport''' class vehicle.
It is not possible to mix different classes of car parts. For example, a '''heavy duty''' class trunk lid cannot be fitted onto a '''sport''' class vehicle.
===Securing items===
===Securing items===
A trunk lid is used to prevent items in the [[trunk]] from falling out. Having a trunk lid fitted in a [[multiplayer]] game allows it to be locked using the [[Car Key|car key]], preventing other players from stealing items. However, other players can smash the [[Car Window|windows]] and gain access, so it is highly recommended to park [[Vehicles]] inside a secure safehouse if possible.
A trunk lid is used to prevent items in the [[trunk]] from falling out. Having a trunk lid fitted in a [[multiplayer]] game allows it to be locked using the [[Car Key|car key]], preventing other players from stealing items. However, other players can smash the [[Car Window|windows]] and gain access, so it is highly recommended to park [[vehicles]] inside a secure safehouse if possible.


===Condition===
===Condition===
The trunk lid's condition will decrease if the rear of the vehicle hits either a zombie or any solid object. A trunk lid with low condition will allow items to fall out of the vehicle's [[Trunk]], which can be heard as a ''clunk'' sound.
The trunk lid's condition will decrease if the rear of the vehicle hits either a zombie or any solid object. A trunk lid with low condition will allow items to fall out of the vehicle's [[trunk]], which can be heard as a ''clunk'' sound.


A trunk lid can be repaired with [[Metal Sheet]]s or [[Small Metal Sheet]]s and a [[Propane Torch]] at [[Metalworking]] level 1 and [[Mechanics]] level 2. Alternatively, it can be repaired with [[Screws]] instead of using a torch, however this will repair significantly less durability and take far more resources to do.
A trunk lid can be repaired with [[Metal Sheet|metal sheet]]s or [[Small Metal Sheet|small metal sheet]]s and a [[Propane Torch|propane torch]] at [[metalworking]] level 1 and [[mechanics]] level 2. Alternatively, it can be repaired with [[screws]] instead of using a torch, however this will repair significantly less durability and take far more resources to do.


==Notes==
==Notes==
Line 35: Line 39:
{| class="wikitable theme-red"
{| class="wikitable theme-red"
!Vehicle type
!Vehicle type
!Class name
!Item ID
|-
|-
|Standard
|Standard

Revision as of 10:14, 23 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]

Template:Infobox vehicle part/sandbox

A damaged trunk lid may result in objects falling from your vehicle.
— In-game description

A trunk lid is an item forming part of most vehicles. If a trunk lid is missing, heavily damaged, or broken, items can fall out of the trunk.

Usage

Installing/Uninstalling

A trunk lid can be installed or uninstalled from a vehicle using a wrench so long as the recipe has been learned for that vehicle type. Each level of mechanics will decrease the chance of causing damage and increase the chance of success, with level 3 resulting in no damage and 100% chance of success.

It is not possible to mix different classes of car parts. For example, a heavy duty class trunk lid cannot be fitted onto a sport class vehicle.

Securing items

A trunk lid is used to prevent items in the trunk from falling out. Having a trunk lid fitted in a multiplayer game allows it to be locked using the car key, preventing other players from stealing items. However, other players can smash the windows and gain access, so it is highly recommended to park vehicles inside a secure safehouse if possible.

Condition

The trunk lid's condition will decrease if the rear of the vehicle hits either a zombie or any solid object. A trunk lid with low condition will allow items to fall out of the vehicle's trunk, which can be heard as a clunk sound.

A trunk lid can be repaired with metal sheets or small metal sheets and a propane torch at metalworking level 1 and mechanics level 2. Alternatively, it can be repaired with screws instead of using a torch, however this will repair significantly less durability and take far more resources to do.

Notes

  • There have been several reports of items falling from vehicles and subsequently disappearing. This is likely a bug.

Item IDs

Vehicle type Item ID
Standard Base.TrunkDoor1
Heavy-Duty Base.TrunkDoor2
Sport Base.TrunkDoor3

Code

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

Base.TrunkDoor1
Source: ProjectZomboid\media\scripts\vehicleitems.txt

Retrieved: Build 41.78.16
item TrunkDoor1
    {
        DisplayCategory = VehicleMaintenance,
        Weight	=	15.0,
        Type	=	Normal,
        DisplayName	=	Trunk Lid,
        Icon	=	EngineDoor,
        VehicleType =   1,
        ChanceToSpawnDamaged = 25,
        ConditionMax = 100,
        MechanicsItem = TRUE,
        WorldStaticModel = CarTrunkLid,
    }

Base.TrunkDoor2
Source: ProjectZomboid\media\scripts\vehicleitems.txt

Retrieved: Build 41.78.16
item TrunkDoor2
    {
        DisplayCategory = VehicleMaintenance,
        Weight	=	15.0,
        Type	=	Normal,
        DisplayName	=	Trunk Lid,
        Icon	=	EngineDoor,
        VehicleType =   2,
        ChanceToSpawnDamaged = 25,
        ConditionMax = 100,
        MechanicsItem = TRUE,
        WorldStaticModel = CarTrunkLid,
    }

Base.TrunkDoor3
Source: ProjectZomboid\media\scripts\vehicleitems.txt

Retrieved: Build 41.78.16
item TrunkDoor3
    {
        DisplayCategory = VehicleMaintenance,
        Weight	=	15.0,
        Type	=	Normal,
        DisplayName	=	Trunk Lid,
        Icon	=	EngineDoor,
        VehicleType =   3,
        ChanceToSpawnDamaged = 25,
        ConditionMax = 100,
        MechanicsItem = TRUE,
        WorldStaticModel = CarTrunkLid,
    }

See also