|
@@ -166,7 +166,7 @@ export interface Spell {
|
|
|
}
|
|
|
// #endregion
|
|
|
|
|
|
-// #region Notes
|
|
|
+// #region Journal
|
|
|
|
|
|
export interface JournalEntry {
|
|
|
title: string;
|
|
@@ -175,3 +175,16 @@ export interface JournalEntry {
|
|
|
startDate?: string;
|
|
|
endDate?: string;
|
|
|
}
|
|
|
+
|
|
|
+export interface Npcs {
|
|
|
+ allies: Npc[];
|
|
|
+ enemies: Npc[];
|
|
|
+ others: Npc[];
|
|
|
+}
|
|
|
+
|
|
|
+export interface Npc {
|
|
|
+ name: string;
|
|
|
+ longDescription: string;
|
|
|
+ shortDescription: string;
|
|
|
+ organization?: string;
|
|
|
+}
|