Browse Source

created interfaces for npcs

Warafear 7 months ago
parent
commit
d342c798a8
1 changed files with 14 additions and 1 deletions
  1. 14 1
      src/interfaces/interfaces.ts

+ 14 - 1
src/interfaces/interfaces.ts

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