> For the complete documentation index, see [llms.txt](https://docs.t1ger.net/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.t1ger.net/resources/t1ger-tuning/configuration/parts.md).

# Parts

t1ger\_tuning/shared/parts.lua

```lua
Config.TuningParts = {
    mod_engine       = { label = "Vehicle Engine", image = "https://i.postimg.cc/G8Z6DXk7/mod-engine.png" },
    mod_brakes       = { label = "Vehicle Brakes", image = "https://i.postimg.cc/VrS35xb4/mod-brakes.png" },
    mod_transmission = { label = "Vehicle Transmission", image = "https://i.postimg.cc/SYC3fcdZ/mod-transmission.png" },
    mod_suspension   = { label = "Vehicle Suspension", image = "https://i.postimg.cc/RJKyLwdT/mod-suspension.png" },
    mod_armor        = { label = "Vehicle Armor", image = "https://i.postimg.cc/627DTkG0/mod-armor.png" },
    mod_turbo        = { label = "Vehicle Turbo", image = "https://i.postimg.cc/nMDyxtxx/mod-turbo.png" },
    mod_wheels       = { label = "Vehicle Wheels", image = "https://i.postimg.cc/yWZMKzK6/mod-wheels.png" },
    mod_tyresmoke    = { label = "Vehicle Tyre Smoke", image = "https://i.postimg.cc/kDb0CdCq/mod-tyresmoke.png" },
    mod_headlights   = { label = "Vehicle Headlights", image = "https://i.postimg.cc/dkzgC52w/mod-headlights.png" },
    mod_neon         = { label = "Vehicle Neon", image = "https://i.postimg.cc/TLZBbtVy/mod-neon.png" },
    mod_respray      = { label = "Vehicle Respray", image = "https://i.postimg.cc/4HVqQpPK/mod-respray.png" },
    mod_livery       = { label = "Vehicle Livery", image = "https://i.postimg.cc/wySnNwX7/mod-livery.png" },
    mod_windowtint   = { label = "Vehicle Window Tint", image = "https://i.postimg.cc/9z762j2f/mod-windowtint.png" },
    mod_plate        = { label = "Vehicle Plate", image = "https://i.postimg.cc/BPHkB2pv/mod-plate.png" },
    mod_horn         = { label = "Vehicle Horn", image = "https://i.postimg.cc/Q9Rv7fQ8/mod-horn.png" },
    mod_extras       = { label = "Vehicle Extras", image = "https://i.postimg.cc/62DFZMrs/mod-extras.png" },
    mod_bodywork     = { label = "Vehicle Bodywork", image = "https://i.postimg.cc/YG4Jj5mR/mod-bodywork.png" },
    mod_enginebay    = { label = "Vehicle Engine Bay", image = "https://i.postimg.cc/7GpjzKgW/mod-enginebay.png" },
    mod_exterior     = { label = "Vehicle Exterior", image = "https://i.postimg.cc/MMhgB9yC/mod-exterior.png" },
    mod_interior     = { label = "Vehicle Interior", image = "https://i.postimg.cc/hzHNm2Lv/mod-interior.png" },
}

Config.Kits = {
    tuner_tablet     = { label = "Tuner Tablet",           image = "https://i.postimg.cc/gxCk6rqd/tuner-tablet.png" },
    tuner_repairkit  = { label = "Tuner Repair Kit",       image = "https://i.postimg.cc/LJc6ZhBS/tuner-repairkit.png" },
    tuner_enghoist   = { label = "Tuner Engine Hoist",     image = "https://i.postimg.cc/QF2xWVg2/tuner-enghoist.png" },
    nos_shots_bottle = { label = "NOS 10-Shots (1lb)",     image = "https://i.postimg.cc/nXycQMY8/nos-shots-bottle.png" },
    nos_empty_bottle = { label = "NOS Empty (1lb)",        image = "https://i.postimg.cc/LJc6ZhBF/nos-empty-bottle.png" },
    nos_purge_dye    = { label = "NOS Purge Dye",          image = "https://i.postimg.cc/ZWGKy0Ft/nos-purge-dye.png" },
}

Config.Tires = {
    mod_bullettires  = { label = "Stock Tires",            image = "https://i.postimg.cc/G8ZBLz77/mod-bullettires.png" },
    mod_drifttires   = { label = "Drift Tires",            image = "https://i.postimg.cc/phg9WkG1/mod-drifttires.png" },
    mod_stocktires   = { label = "Bulletproof Tires",      image = "https://i.postimg.cc/w3myf8M2/mod-stocktires.png" },
}

Config.Materials = { -- index is item name and value is item label.
    scrap_metal = "Scrap Metal",
    steel = "Steel",
    aluminium = "Aluminium",
    plastic = "Plastic",
    rubber = "Rubber",
    electric_scrap = "Electric Scrap",
    glass = "Glass",
    copper = "Copper",
    carbon_fiber = "Carbon Fiber",
    brass = "Brass",
    synthetic_oil = "Synthetic Oil",
    acid = "Acid"
}
```

* `label` (string) — the label of the tuning part
* `image`(string) — the icon for the tuning part
