zenno/career/ismdata: start of auto career analysis
ci/woodpecker/push/horsebot Pipeline was successful
ci/woodpecker/push/zenno Pipeline failed

This commit is contained in:
2026-08-07 17:01:33 -04:00
parent 5a13519189
commit 1fe397ca81
13 changed files with 794 additions and 36 deletions
+15 -1
View File
@@ -47,7 +47,6 @@ export interface SupportCard {
Effect[],
Effect[],
Effect[],
Effect[],
];
/**
* Unique effect, for cards that have them.
@@ -210,3 +209,18 @@ export interface Hint {
wit?: number;
sp?: number;
}
export async function supports(): Promise<SupportCard[]> {
const resp = await fetch('/api/global/support');
return resp.json();
}
export const SPECIALTY_ICON = {
Speed: 0,
Stamina: 1,
Power: 2,
Guts: 3,
Wit: 4,
Pal: 5,
Group: 6,
} as const;