Reviewed-on: #1016 Co-authored-by: Sainan <sainan@calamity.inc> Co-committed-by: Sainan <sainan@calamity.inc>
14 lines
411 B
TypeScript
14 lines
411 B
TypeScript
export const inventoryFields = ["RawUpgrades", "MiscItems", "Consumables", "Recipes"] as const;
|
|
export type IInventoryFieldType = (typeof inventoryFields)[number];
|
|
|
|
export interface IMissionReward {
|
|
StoreItem: string;
|
|
TypeName?: string;
|
|
UpgradeLevel?: number;
|
|
ItemCount: number;
|
|
TweetText?: string;
|
|
ProductCategory?: string;
|
|
FromEnemyCache?: boolean;
|
|
IsStrippedItem?: boolean;
|
|
}
|