import { guid } from '../common'; import { RequisitionPack } from './RequisitionPacks'; export interface SpartanRank { /** The amount of XP required to enter this rank. */ startXp: number; /** The reward the player will receive for earning this Spartan Rank. */ reward: SpartanRankReward; /** The ID that uniquely identifies this Spartan Rank. */ id: number; } export interface SpartanRankReward { /** The amount of XP that will be awarded. */ xp: number; /** The set of requisition packs (if any) that will be awarded. */ requisitionPacks: RequisitionPack[]; /** The ID that uniquely identifies this reward. */ id: guid; } /** * List of spartan ranks */ export declare type SpartanRanks = SpartanRank[];