Android build v1.0.43

This commit is contained in:
Warren H
2026-06-20 22:34:38 -04:00
parent 5aac39c6c9
commit 6e10b37f8e
21 changed files with 2095 additions and 337 deletions
+7
View File
@@ -134,6 +134,11 @@ export type CraftingRecipe = {
canCraft: boolean
}
export type GearUpgradePath = {
fromItemId: number
toItemId: number
}
export type LootRollItem = Omit<Item, 'quantity' | 'equipped'> & {
quantity: number
duplicate: boolean
@@ -163,6 +168,7 @@ export type Dungeon = {
partySize: number
completionItemLevel: number | null
experienceReward: number
imageUrl: string
description: string
locationName: string
difficulties: Difficulty[]
@@ -224,6 +230,7 @@ export type CharacterProfile = {
}
setBonuses: SetBonus[]
craftingRecipes: CraftingRecipe[]
gearUpgradePaths: GearUpgradePath[]
dungeons: Dungeon[]
}