zeus-api-types 1.0.55 → 1.0.57
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 +2 -2
- package/package.json +1 -1
package/dist/game-state.d.ts
CHANGED
|
@@ -209,13 +209,11 @@ export interface GameState {
|
|
|
209
209
|
narrativeStyle?: NarrativeStyleCard;
|
|
210
210
|
}
|
|
211
211
|
export interface GameStateReduced {
|
|
212
|
-
immutable: ImmutableState;
|
|
213
212
|
currentTurn: number;
|
|
214
213
|
time: TimeState;
|
|
215
214
|
location: string;
|
|
216
215
|
player: Player;
|
|
217
216
|
world: WorldReduced;
|
|
218
|
-
metadata: Metadata;
|
|
219
217
|
storyArc?: StoryArc;
|
|
220
218
|
narrativeStyle?: NarrativeStyleCard;
|
|
221
219
|
}
|
|
@@ -257,6 +255,8 @@ export interface GameMetadata {
|
|
|
257
255
|
playerName?: string;
|
|
258
256
|
/** Player image filename (not full URL) */
|
|
259
257
|
playerImage?: string;
|
|
258
|
+
/** Genre poster image filename (not full URL) */
|
|
259
|
+
posterImage?: string;
|
|
260
260
|
/** Current act number (for multi-act games) */
|
|
261
261
|
act?: number;
|
|
262
262
|
/** Total number of acts planned */
|