2024-12-25 23:33:29 +01:00
|
|
|
import { IInventoryChanges } from "./purchaseTypes";
|
|
|
|
|
2024-06-02 18:35:06 +03:00
|
|
|
export interface ISyndicateSacrifice {
|
|
|
|
AffiliationTag: string;
|
|
|
|
SacrificeLevel: number;
|
|
|
|
AllowMultiple: boolean;
|
|
|
|
}
|
|
|
|
|
|
|
|
export interface ISyndicateSacrificeResponse {
|
|
|
|
AffiliationTag: string;
|
|
|
|
Level: number;
|
|
|
|
LevelIncrease: number;
|
2024-12-25 23:33:29 +01:00
|
|
|
InventoryChanges: IInventoryChanges;
|
2024-06-02 18:35:06 +03:00
|
|
|
NewEpisodeReward: boolean;
|
|
|
|
}
|