yarn add r6data
or
npm install r6data
Table of operators which are going to drop in price:
import { OPERATORS } from 'r6data';
console.table(
OPERATORS.filter(({ isRecruit }) => !isRecruit)
.filter(({ nextPriceDropSeasons }) => nextPriceDropSeasons)
.map(({ name, price, nextPriceDropSeasons }) => ({
name,
price: price?.renown,
priceDrop: nextPriceDropSeasons ?? 0
}))
);
Operator icons from r6operators.marcopixel.eu