mirror of
https://github.com/pagefaultgames/pokerogue.git
synced 2025-12-16 06:45:24 +01:00
* Add tracking for nuzlocke completion * Add ribbon to legacy ui folder * Add tracking for friendship ribbon * fix overlapping flag set * Replace mass getters with a single method * Add tracking for each generational ribbon * Add ribbons for each challenge * Apply Kev's suggestions from code review Co-authored-by: NightKev <34855794+DayKev@users.noreply.github.com> --------- Co-authored-by: NightKev <34855794+DayKev@users.noreply.github.com>
17 lines
323 B
TypeScript
17 lines
323 B
TypeScript
import type { RibbonData } from "#system/ribbons/ribbon-data";
|
|
|
|
export interface DexData {
|
|
[key: number]: DexEntry;
|
|
}
|
|
|
|
export interface DexEntry {
|
|
seenAttr: bigint;
|
|
caughtAttr: bigint;
|
|
natureAttr: number;
|
|
seenCount: number;
|
|
caughtCount: number;
|
|
hatchedCount: number;
|
|
ivs: number[];
|
|
ribbons: RibbonData;
|
|
}
|