mirror of
https://github.com/Foundryborne/daggerheart.git
synced 2026-01-13 04:01:06 +01:00
Merge branch 'biography-tab-fields' into journal-tab
This commit is contained in:
commit
bbaed0757f
6 changed files with 80 additions and 22 deletions
|
|
@ -243,6 +243,7 @@ export default class CharacterSheet extends DHBaseActorSheet {
|
|||
const { TextEditor } = foundry.applications.ux;
|
||||
|
||||
const paths = {
|
||||
personality: 'biography.personality',
|
||||
background: 'biography.background',
|
||||
connections: 'biography.connections'
|
||||
};
|
||||
|
|
|
|||
|
|
@ -85,11 +85,17 @@ export default class DhCharacter extends BaseDataActor {
|
|||
})
|
||||
),
|
||||
biography: new fields.SchemaField({
|
||||
personality: new fields.HTMLField(),
|
||||
background: new fields.HTMLField(),
|
||||
connections: new fields.HTMLField(),
|
||||
characteristics: new fields.SchemaField({
|
||||
pronouns: new fields.StringField({}),
|
||||
age: new fields.StringField({}),
|
||||
eyes: new fields.StringField({}),
|
||||
height: new fields.StringField({}),
|
||||
weight: new fields.StringField({}),
|
||||
hair: new fields.StringField({}),
|
||||
skin: new fields.StringField({}),
|
||||
faith: new fields.StringField({})
|
||||
})
|
||||
}),
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue