added alphabet item
- added to database and localization definitions - added sheet - added to talents & abilities tab - removed languages & alphabets from actor properties
This commit is contained in:
parent
1011b85067
commit
737a644ecd
6 changed files with 36 additions and 6 deletions
|
@ -51,6 +51,7 @@ export const DS4 = {
|
|||
talent: "DS4.ItemTypeTalent",
|
||||
racialAbility: "DS4.ItemTypeRacialAbility",
|
||||
language: "DS4.ItemTypeLanguage",
|
||||
alphabet: "DS4.ItemTypeAlphabet",
|
||||
},
|
||||
|
||||
/**
|
||||
|
|
|
@ -8,7 +8,8 @@ export type DS4ItemDataType =
|
|||
| DS4Equipment
|
||||
| DS4Talent
|
||||
| DS4RacialAbility
|
||||
| DS4Language;
|
||||
| DS4Language
|
||||
| DS4Alphabet;
|
||||
|
||||
// types
|
||||
|
||||
|
@ -36,6 +37,7 @@ interface DS4Trinket extends DS4ItemBase, DS4ItemPhysical, DS4ItemEquipable {}
|
|||
interface DS4Equipment extends DS4ItemBase, DS4ItemPhysical {}
|
||||
type DS4RacialAbility = DS4ItemBase;
|
||||
type DS4Language = DS4ItemBase;
|
||||
type DS4Alphabet = DS4ItemBase;
|
||||
|
||||
// templates
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue