omniarena-types 1.28.0 → 1.30.0
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/index.d.ts +12 -1
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -25,6 +25,7 @@ export type PlayerDto = {
|
|
|
25
25
|
characters: string[];
|
|
26
26
|
movableSkillUses: SkillUseDto[];
|
|
27
27
|
playing: boolean;
|
|
28
|
+
turnDuration: number;
|
|
28
29
|
};
|
|
29
30
|
export type InventoryDto = {
|
|
30
31
|
id: string;
|
|
@@ -121,13 +122,15 @@ export type GameSkin = {
|
|
|
121
122
|
id: string;
|
|
122
123
|
characters: Record<number, CharacterSkin>;
|
|
123
124
|
skills: Record<number, SkillSkin>;
|
|
125
|
+
pronouns: Record<number, PronounSkin>;
|
|
124
126
|
};
|
|
125
|
-
export type CharacterAvatar = 'main';
|
|
127
|
+
export type CharacterAvatar = 'main' | 'old' | 'masked';
|
|
126
128
|
export type CharacterSkin = {
|
|
127
129
|
id: number;
|
|
128
130
|
name: string;
|
|
129
131
|
short: string;
|
|
130
132
|
avatars: Record<CharacterAvatar, string>;
|
|
133
|
+
pronouns: number;
|
|
131
134
|
bio: string;
|
|
132
135
|
};
|
|
133
136
|
export type SkillSkin = {
|
|
@@ -135,6 +138,13 @@ export type SkillSkin = {
|
|
|
135
138
|
name: string;
|
|
136
139
|
image: string;
|
|
137
140
|
};
|
|
141
|
+
type PronounSkin = {
|
|
142
|
+
id: number;
|
|
143
|
+
subject: string;
|
|
144
|
+
object: string;
|
|
145
|
+
possessive: string;
|
|
146
|
+
reflexive: string;
|
|
147
|
+
};
|
|
138
148
|
export type GameSkill = {
|
|
139
149
|
id: number;
|
|
140
150
|
name: string;
|
|
@@ -153,3 +163,4 @@ export type GameCharacter = CharacterSkin & {
|
|
|
153
163
|
playable: boolean;
|
|
154
164
|
skills: GameSkill[];
|
|
155
165
|
};
|
|
166
|
+
export {};
|