15 lines
473 B
TypeScript
15 lines
473 B
TypeScript
// SPDX-FileCopyrightText: 2021 Johannes Loher
|
|
//
|
|
// SPDX-License-Identifier: MIT
|
|
|
|
import type { DS4ItemDataPropertiesDataRollable } from "../item-data-properties-base";
|
|
import type { DS4SpellDataSourceData } from "./spell-data-source";
|
|
|
|
export interface DS4SpellDataProperties {
|
|
type: "spell";
|
|
data: DS4SpellDataPropertiesData;
|
|
}
|
|
|
|
interface DS4SpellDataPropertiesData extends DS4SpellDataSourceData, DS4ItemDataPropertiesDataRollable {
|
|
price: number | null;
|
|
}
|