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