SpaceNinjaServer/src/types/missionTypes.ts
2023-09-09 22:10:21 +02:00

18 lines
448 B
TypeScript

export const inventoryFields = ["RawUpgrades", "MiscItems", "Consumables", "Recipes"] as const;
export type IInventoryFieldType = (typeof inventoryFields)[number];
export interface IMissionRewardResponse {
StoreItem?: string;
TypeName: string;
UpgradeLevel?: number;
ItemCount: number;
TweetText: string;
ProductCategory: string;
}
export interface IReward {
name: string;
chance: number;
rotation?: string;
}