import { Skill } from "./Skill.js"; export interface CommandCodeAssetMap { cc?: { [key: number]: string; }; } export interface CommandCodeAssets { charaGraph: CommandCodeAssetMap; faces: CommandCodeAssetMap; } export interface CommandCodeBasic { id: number; collectionNo: number; name: string; rarity: number; face: string; } export interface CommandCode { id: number; collectionNo: number; name: string; ruby: string; originalName: string; rarity: number; extraAssets: CommandCodeAssets; skills: Skill[]; illustrator: string; comment: string; } export interface CommandCodeBasic { id: number; collectionNo: number; name: string; rarity: number; face: string; } //# sourceMappingURL=CommandCode.d.ts.map