types-nora-api 0.0.40 → 0.0.42
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/classes.d.ts +61 -2
- package/package.json +1 -1
package/dist/classes.d.ts
CHANGED
|
@@ -83,10 +83,19 @@ interface IAtributoFicha {
|
|
|
83
83
|
type AtributoFichaDto = IAtributoFicha;
|
|
84
84
|
interface IDetalheFicha {
|
|
85
85
|
fkFichaPersonagemId: number;
|
|
86
|
+
fkClassesId: number;
|
|
86
87
|
ficha: FichaPersonagemDto;
|
|
87
88
|
classe: ClasseDto;
|
|
89
|
+
dados: DadosDetalheFicha;
|
|
88
90
|
}
|
|
89
91
|
type DetalheFichaDto = IDetalheFicha;
|
|
92
|
+
type DadosDetalheFicha = {
|
|
93
|
+
valorMaxAtributo: number;
|
|
94
|
+
pontosDeHabilidadeEspecial: number;
|
|
95
|
+
pontosDeHabilidadeParanormal: number;
|
|
96
|
+
pontosDeMelhoriaDeRitual: number;
|
|
97
|
+
pontosDeHabilidadeElemental: number;
|
|
98
|
+
};
|
|
90
99
|
interface IEstatisticaDanificavelFicha {
|
|
91
100
|
fkFichaPersonagemId: number;
|
|
92
101
|
fkEstatisticasDanificaveisId: number;
|
|
@@ -119,6 +128,16 @@ interface IPericiaFicha {
|
|
|
119
128
|
detalhesValor: string[];
|
|
120
129
|
}
|
|
121
130
|
type PericiaFichaDto = IPericiaFicha;
|
|
131
|
+
interface IGanhoEstatisticaAtributoClasse {
|
|
132
|
+
fkEstatisticasDanificaveisId: number;
|
|
133
|
+
fkAtributosId: number;
|
|
134
|
+
fkClassesId: number;
|
|
135
|
+
estatisticaDanificavel: EstatisticaDanificavelDto;
|
|
136
|
+
atributo: AtributoDto;
|
|
137
|
+
classe: ClasseDto;
|
|
138
|
+
valorPorUnidade: number;
|
|
139
|
+
}
|
|
140
|
+
type GanhoEstatisticaAtributoClasseDto = IGanhoEstatisticaAtributoClasse;
|
|
122
141
|
interface IGanhoNivelClasse {
|
|
123
142
|
fkNivelId: number;
|
|
124
143
|
fkTipoGanhoNivelId: number;
|
|
@@ -126,9 +145,45 @@ interface IGanhoNivelClasse {
|
|
|
126
145
|
nivel: NivelDto;
|
|
127
146
|
tipoGanhoNivel: TipoGanhoNivelDto;
|
|
128
147
|
classe: ClasseDto;
|
|
129
|
-
|
|
148
|
+
dados: DadosDoTipoGanho;
|
|
130
149
|
}
|
|
131
150
|
type GanhoNivelClasseDto = IGanhoNivelClasse;
|
|
151
|
+
type DadosDoTipoGanho = DadosGanho_Atributos | DadosGanho_Pericias | DadosGanho_Estatisticas | DadosGanho_Classes | DadosGanho_ValorMaximoAtributo | DadosGanho_PontosHabilidadesEspeciais | DadosGanho_PontosHabilidadesParanormais | DadosGanho_Rituais | DadosGanho_PontosMelhoriaRitual | DadosGanho_PontosHabilidadeElemental;
|
|
152
|
+
type DadosGanho_Atributos = {
|
|
153
|
+
ganhos: number;
|
|
154
|
+
trocas: number;
|
|
155
|
+
};
|
|
156
|
+
type DadosGanho_Pericias = {
|
|
157
|
+
ganhos: number;
|
|
158
|
+
trocas: number;
|
|
159
|
+
idPatente: number;
|
|
160
|
+
}[];
|
|
161
|
+
type DadosGanho_Estatisticas = {
|
|
162
|
+
idEstatistica: number;
|
|
163
|
+
valorAumento: number;
|
|
164
|
+
}[];
|
|
165
|
+
type DadosGanho_Classes = {
|
|
166
|
+
selecao: boolean;
|
|
167
|
+
};
|
|
168
|
+
type DadosGanho_ValorMaximoAtributo = {
|
|
169
|
+
aumento: boolean;
|
|
170
|
+
};
|
|
171
|
+
type DadosGanho_PontosHabilidadesEspeciais = {
|
|
172
|
+
valorAumento: number;
|
|
173
|
+
};
|
|
174
|
+
type DadosGanho_PontosHabilidadesParanormais = {
|
|
175
|
+
valorAumento: number;
|
|
176
|
+
};
|
|
177
|
+
type DadosGanho_Rituais = {
|
|
178
|
+
ganhos: number;
|
|
179
|
+
trocas: number;
|
|
180
|
+
};
|
|
181
|
+
type DadosGanho_PontosMelhoriaRitual = {
|
|
182
|
+
valorAumento: number;
|
|
183
|
+
};
|
|
184
|
+
type DadosGanho_PontosHabilidadeElemental = {
|
|
185
|
+
valorAumento: number;
|
|
186
|
+
};
|
|
132
187
|
interface ITipoGanhoNivel {
|
|
133
188
|
id: number;
|
|
134
189
|
nome: string;
|
|
@@ -558,4 +613,8 @@ type ObjetoParaSalvarEdicaoFicha = {
|
|
|
558
613
|
pericias: PericiaFichaDto[];
|
|
559
614
|
estatisticasDanificaveis: EstatisticaDanificavelDto[];
|
|
560
615
|
};
|
|
561
|
-
|
|
616
|
+
type ObjetoGanhosEvolucao = {
|
|
617
|
+
listaGanhos: GanhoNivelClasseDto[];
|
|
618
|
+
listaGanhosEstatisticasPorAtributos: GanhoEstatisticaAtributoClasseDto[];
|
|
619
|
+
};
|
|
620
|
+
export { IAventura, AventuraDto, IConviteGrupoAventuraPersonagem, ConviteGrupoAventuraPersonagemDto, IGrupoAventura, GrupoAventuraDto, IGrupoAventuraPersonagem, GrupoAventuraPersonagemDto, IRespostaConvite, RespostaConviteDto, IVariavelAmbiente, VariavelAmbienteDto, IConquista, ConquistaDto, ITipoConquista, TipoConquistaDto, IAtributoFicha, AtributoFichaDto, IDetalheFicha, DetalheFichaDto, DadosDetalheFicha, IEstatisticaDanificavelFicha, EstatisticaDanificavelFichaDto, IFichaPersonagem, FichaPersonagemDto, IPericiaFicha, PericiaFichaDto, IGanhoEstatisticaAtributoClasse, GanhoEstatisticaAtributoClasseDto, IGanhoNivelClasse, GanhoNivelClasseDto, DadosDoTipoGanho, DadosGanho_Atributos, DadosGanho_Pericias, DadosGanho_Estatisticas, DadosGanho_Classes, DadosGanho_ValorMaximoAtributo, DadosGanho_PontosHabilidadesEspeciais, DadosGanho_PontosHabilidadesParanormais, DadosGanho_Rituais, DadosGanho_PontosMelhoriaRitual, DadosGanho_PontosHabilidadeElemental, ITipoGanhoNivel, TipoGanhoNivelDto, IGeracao, GeracaoDto, IImagem, ImagemDto, ITipoImagem, TipoImagemDto, IAlcance, AlcanceDto, IAtributo, AtributoDto, ICategoriaRitual, CategoriaRitualDto, ICirculoRitual, CirculoRitualDto, IClasse, ClasseDto, IDuracao, DuracaoDto, IElemento, ElementoDto, IEstatisticaDanificavel, EstatisticaDanificavelDto, IExecucao, ExecucaoDto, IFormatoAlcance, FormatoAlcanceDto, ILinhaEfeito, LinhaEfeitoDto, INivel, NivelDto, INivelComponente, NivelComponenteDto, INivelProficiencia, NivelProficienciaDto, INivelRitual, NivelRitualDto, IPatentePericia, PatentePericiaDto, IPericia, PericiaDto, IProficiencia, ProficienciaDto, ITipoAlvo, TipoAlvoDto, ITipoCategoria, TipoCategoriaDto, ITipoDano, TipoDanoDto, ITipoEfeito, TipoEfeitoDto, ITipoItem, TipoItemDto, ITipoProficiencia, TipoProficienciaDto, IPerfilAdmin, PerfilAdminDto, IPerfilJogador, PerfilJogadorDto, IPerfilMestre, PerfilMestreDto, IInformacaoPersonagem, InformacaoPersonagemDto, IPersonagem, PersonagemDto, IResumoPersonagemAventura, ResumoPersonagemAventuraDto, ITipoPersonagem, TipoPersonagemDto, IEstudo, EstudoDto, ILinkSessao, LinkSessaoDto, IRegistroSessao, RegistroSessaoDto, ISessao, SessaoDto, ITipoLinkSessao, TipoLinkSessaoDto, AuthSession, ICustomizacaoUsuario, CustomizacaoUsuarioDto, IDisponibilidadeUsuario, DisponibilidadeUsuarioDto, IUsuario, UsuarioDto, Done, SOCKET_UsuarioContato, PaletaCores, EstruturaPaginaDefinicao, ConteudoItem, DefinicaoElemento, ListaItem, DadosMinhasDisponibilidades, AventuraEstado, EstadoPendenciaPersonagem, EstadoPendenciaAdministrativaPersonagem, EstadoOcupacaoPersonagem, EstadoSessao, dds, CargoExibicaoUsuario, CargosUsuario, ObjetoAutenticacao, ObjetoPendeciaPersonagem, TipoVariavelAmbiente, ObjetoEvoluiPersonagem, ObjetoParaSalvarEdicaoFicha, ObjetoGanhosEvolucao };
|