Merge remote-tracking branch 'origin/master' into 024-not-possible-to-manage-active-effects-on-owned-items
This commit is contained in:
commit
2a03ed273f
12 changed files with 126 additions and 50 deletions
|
@ -1,6 +1,13 @@
|
|||
import { ModifiableData } from "../actor/actor-data";
|
||||
|
||||
export type DS4ItemDataType = DS4Weapon | DS4Armor | DS4Shield | DS4Trinket | DS4Equipment | DS4Talent;
|
||||
export type DS4ItemDataType =
|
||||
| DS4Weapon
|
||||
| DS4Armor
|
||||
| DS4Shield
|
||||
| DS4Trinket
|
||||
| DS4Equipment
|
||||
| DS4Talent
|
||||
| DS4RacialAbility;
|
||||
|
||||
// types
|
||||
|
||||
|
@ -26,6 +33,7 @@ interface DS4TalentRank extends ModifiableData<number> {
|
|||
interface DS4Shield extends DS4ItemBase, DS4ItemPhysical, DS4ItemEquipable, DS4ItemProtective {}
|
||||
interface DS4Trinket extends DS4ItemBase, DS4ItemPhysical, DS4ItemEquipable {}
|
||||
interface DS4Equipment extends DS4ItemBase, DS4ItemPhysical {}
|
||||
type DS4RacialAbility = DS4ItemBase;
|
||||
|
||||
// templates
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue