add basic creature sheet

This commit is contained in:
Johannes Loher 2021-01-10 02:05:30 +01:00
parent d416c14cbd
commit 17d0213e62
11 changed files with 120 additions and 20 deletions

View file

@ -75,6 +75,7 @@ interface DS4ActorDataCharacterLanguage {
}
interface DS4ActorDataCharacterProfile {
biography: string;
gender: string;
birthday: string;
birthplace: string;
@ -100,4 +101,5 @@ interface DS4ActorDataCreatureBaseInfo {
creatureType: CreatureType;
sizeCategory: SizeCategory;
experiencePoints: number;
description: string;
}