zeus-api-types 1.0.64 → 1.0.66
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/game-state.d.ts
CHANGED
|
@@ -82,9 +82,7 @@ export interface WorldEntity {
|
|
|
82
82
|
*/
|
|
83
83
|
export interface Player extends WorldEntity {
|
|
84
84
|
name: string;
|
|
85
|
-
|
|
86
|
-
role?: string;
|
|
87
|
-
backstory?: string;
|
|
85
|
+
description: string;
|
|
88
86
|
tone?: string;
|
|
89
87
|
}
|
|
90
88
|
/**
|
|
@@ -94,10 +92,7 @@ export interface Player extends WorldEntity {
|
|
|
94
92
|
export interface NPC extends WorldEntity {
|
|
95
93
|
name: string;
|
|
96
94
|
discovered: boolean;
|
|
97
|
-
playable
|
|
98
|
-
motivation?: string;
|
|
99
|
-
role?: string;
|
|
100
|
-
backstory?: string;
|
|
95
|
+
playable: boolean;
|
|
101
96
|
tone?: string;
|
|
102
97
|
}
|
|
103
98
|
export interface NpcExistingOrNewOp {
|
|
@@ -122,6 +122,12 @@ export interface UserProfilePreferences {
|
|
|
122
122
|
* If not set, defaults to that set by the author .
|
|
123
123
|
*/
|
|
124
124
|
language?: string;
|
|
125
|
+
/**
|
|
126
|
+
* Whether NSFW content is allowed for the user.
|
|
127
|
+
* If not set, defaults to false .
|
|
128
|
+
* Must have had at least one age verification to enable.
|
|
129
|
+
*/
|
|
130
|
+
NSFWContentAllowed?: boolean;
|
|
125
131
|
}
|
|
126
132
|
/**
|
|
127
133
|
* User preferences stored in preferences.json
|