SpaceNinjaServer/src/types/syndicateTypes.ts
Jānis 2a1a4e77b5
feat: syndicates (#269)
Co-authored-by: janisslsm <janisslsm@users.noreply.github.com>
2024-06-02 17:35:06 +02:00

14 lines
309 B
TypeScript

export interface ISyndicateSacrifice {
AffiliationTag: string;
SacrificeLevel: number;
AllowMultiple: boolean;
}
export interface ISyndicateSacrificeResponse {
AffiliationTag: string;
Level: number;
LevelIncrease: number;
InventoryChanges: any[];
NewEpisodeReward: boolean;
}