17 lines
482 B
TypeScript
17 lines
482 B
TypeScript
// SPDX-FileCopyrightText: 2022 Johannes Loher
|
|
//
|
|
// SPDX-License-Identifier: MIT
|
|
|
|
import { DS4Actor } from "../actor";
|
|
|
|
import type { ItemType } from "../../item/item-data-source";
|
|
|
|
export class DS4Creature extends DS4Actor {
|
|
override get ownableItemTypes(): Array<ItemType> {
|
|
return [...super.ownableItemTypes, "specialCreatureAbility"];
|
|
}
|
|
}
|
|
|
|
export interface DS4Creature {
|
|
data: foundry.data.ActorData & { type: "creature"; _source: { type: "creature" } };
|
|
}
|