16 lines
576 B
TypeScript
16 lines
576 B
TypeScript
// SPDX-FileCopyrightText: 2021 Johannes Loher
|
|
//
|
|
// SPDX-License-Identifier: MIT
|
|
|
|
import type { ModifiableDataBaseTotalMax } from "../../common/common-data";
|
|
import type { DS4ItemDataPropertiesDataRollable } from "../item-data-properties-base";
|
|
import type { DS4TalentDataSourceData } from "./talent-data-source";
|
|
|
|
export interface DS4TalentDataProperties {
|
|
type: "talent";
|
|
data: DS4TalentDataPropertiesData;
|
|
}
|
|
|
|
interface DS4TalentDataPropertiesData extends DS4TalentDataSourceData, DS4ItemDataPropertiesDataRollable {
|
|
rank: ModifiableDataBaseTotalMax<number>;
|
|
}
|