SpaceNinjaServer/src/types/missionTypes.ts
Sainan 93afc2645c
All checks were successful
Build / build (20) (push) Successful in 1m10s
Build / build (22) (push) Successful in 37s
Build / build (18) (push) Successful in 1m4s
Build Docker image / docker (push) Successful in 33s
fix: items from enemy caches not showing "identified" (#1016)
Reviewed-on: #1016
Co-authored-by: Sainan <sainan@calamity.inc>
Co-committed-by: Sainan <sainan@calamity.inc>
2025-02-25 04:42:49 -08:00

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;
}