Skip to content

@lands.io/mod-sdk / ModBoostBarV1Item

Interface: ModBoostBarV1Item

Table of contents

Properties

Properties

breakdown

breakdown: string


code

code: string


fullName

fullName: string


fullStat

fullStat: string


highestRarity

highestRarity: "common" | "rare" | "epic" | "legendary"


icon

icon: string


points

points: number


value

value: string


Source Code

View full implementation
export interface ModBoostBarV1Item {
  code: string;
  icon: string;
  value: string;
  points: number;
  highestRarity: 'common' | 'rare' | 'epic' | 'legendary';
  fullName: string;
  fullStat: string;
  breakdown: string;
}