Tidy 5e Sheets API
    Preparing search index...

    Type Alias EquipmentTypeGroup

    A custom equipment type group, to be rendered in the Equipment Type section of the Item Sheet.

    {
    label: 'Helmet',
    types: {
    clothhat: 'Clothings Helmet',
    lighthat: 'Light Helmet',
    mediumhat: 'Medium Helmet',
    heavyhat: 'Heavy Helmet',
    }
    {
    label: 'MyModuleId.HelmetType.Label',
    types: {
    clothhat: 'MyModuleId.HelmetType.ClothingsHelmet.Label',
    lighthat: 'MyModuleId.HelmetType.LightHelmet.Label',
    mediumhat: 'MyModuleId.HelmetType.MediumHelmet.Label',
    heavyhat: 'MyModuleId.HelmetType.HeavyHelmet.Label',
    }
    type EquipmentTypeGroup = {
        label: string;
        types: Record<string, string>;
    }
    Index

    Properties

    Properties

    label: string

    A group label. Localization keys also work.

    types: Record<string, string>

    An object where the key is the equipment type ID, and the value is the label text. Localization keys also work.