Causes

data/causes.lua

You can edit the UI configuration for "causes of injury" through this data file.

The keys provided are used internally within the script, and should not be removed.

Only the label and icon should be edited in this file.

local causes = {
    suicide = {
        label = "Suicide",
        icon = "fa-solid fa-person-falling",
    },
    weapon = {
        label = "Weapon",
        icon = "fa-solid fa-gun",
    },
    gun = {
        label = "Gun",
        icon = "fa-solid fa-gun",
    },
    hands = {
        label = "Hands",
        icon = "fa-solid fa-hands",
    },
    car = {
        label = "Car",
        icon = "fa-solid fa-car-burst",
    },
    vehicle = {
        label = "Vehicle",
        icon = "fa-solid fa-car-burst",
    },
    blunt_force = {
        label = "Blunt Force",
        icon = "fa-solid fa-hands",
    },
    falling = {
        label = "Falling",
        icon = "fa-solid fa-person-falling",
    },
    unknown = {
        label = "Unknown",
        icon = "fa-solid fa-question",
    },
    treatment = {
        label = "Treatment",
        icon = "fa-solid fa-user-doctor",
    },
}

Last updated