Release v0.1.4 2026-07-12

This commit is contained in:
Warren H
2026-07-12 13:49:46 -04:00
parent b48b3a4f8f
commit bef71d391a
803 changed files with 3800 additions and 358322 deletions
+16 -5
View File
@@ -1,4 +1,5 @@
import type { HealerClassId, InventoryItem } from "../game/types";
import type { BossGroupId } from "../game/bossCatalog";
import type { BossId, HealerClassId, InventoryItem } from "../game/types";
import type { GearProgress } from "../game/progression/gear";
import type { CollectionLog, MaterialStack } from "../game/progression/loot";
@@ -14,14 +15,24 @@ export interface CollectionDrop {
count: number;
chance: string;
itemLevel?: number;
kind: "coin" | "pet";
kind: "group-drop" | "pet";
}
export interface BossCollection {
bossId: string;
export interface GroupBossCollection {
bossId: BossId;
bossName: string;
kills: number;
pet: CollectionDrop;
}
export interface BossGroupCollection {
groupId: BossGroupId;
groupLetter: string;
groupName: string;
coreMechanic: string;
defeated: boolean;
drops: CollectionDrop[];
bosses: GroupBossCollection[];
}
export interface HunterStats {
@@ -38,7 +49,7 @@ export interface HealerProgress {
}
export interface HunterSave {
schemaVersion: 4;
schemaVersion: 5;
slotId: SaveSlotId;
hunterName: string;
activeClassId: HealerClassId;