mirror of
https://github.com/pagefaultgames/pokerogue.git
synced 2025-07-27 18:52:19 +02:00
Catching integers from other PRs
This commit is contained in:
parent
ed8690b57b
commit
d2914c25ee
@ -109,7 +109,7 @@ export interface BiomeTierTod {
|
||||
}
|
||||
|
||||
export interface CatchableSpecies{
|
||||
[key: integer]: BiomeTierTod[]
|
||||
[key: number]: BiomeTierTod[]
|
||||
}
|
||||
|
||||
export const catchableSpecies: CatchableSpecies = {};
|
||||
|
@ -6,7 +6,7 @@ export interface PassiveAbilities {
|
||||
}
|
||||
|
||||
interface StarterPassiveAbilities {
|
||||
[key: integer]: PassiveAbilities
|
||||
[key: number]: PassiveAbilities
|
||||
}
|
||||
|
||||
export const starterPassiveAbilities: StarterPassiveAbilities = {
|
||||
|
@ -68434,7 +68434,7 @@ export const tmSpecies: TmSpecies = {
|
||||
};
|
||||
|
||||
interface SpeciesTmMoves {
|
||||
[key: integer]: (Moves | [string | Species, Moves])[];
|
||||
[key: number]: (Moves | [string | Species, Moves])[];
|
||||
}
|
||||
|
||||
function transposeTmSpecies(): SpeciesTmMoves {
|
||||
|
Loading…
Reference in New Issue
Block a user