UNPKG

warframe-worldstate-parser

Version:

An Open parser for Warframe's Worldstate in Javascript

17 lines (16 loc) 344 B
/** * Single category of duviri choices */ export default class DuviriChoice { constructor(data) { switch (data.Category) { case 'EXC_NORMAL': this.category = 'normal'; break; case 'EXC_HARD': this.category = 'hard'; } this.categoryKey = data.Category; this.choices = data.Choices; } }